I’m attempting to write a knowledge base plugin to consume the Salesforce API and pull in solutions in a RESTful style application path; however, some of the core plugin concepts escape me. For example, use of add_rewrite_tag from the Rewrite API produces the following argument error:
Missing argument 3 for WP_Rewrite::add_rewrite_tag()
Forgive my ignorance with the WordPress core, but doesn’t the documentation only describe two arguments?
Rather than chase an argument error which probably won’t help me much in the grand scheme of things, I would like to start simple and produce statically generated content at a custom URL. For example:
http://example.com/knowledge-base/
Where knowledge-base is handled by a rewrite rule via my custom plugin which in turn would output a simple “Hello World” message with the theme’s header/footer wrapped around it.
Does anyone know of an existing plugin I can review that demonstrates rewrite concepts a little more clearly than the codex documentation? It seems most examples I’ve run across append content to existing pages/posts whereas I’m looking to generate something entirely new based on external content.