Does Wordpress have the ability to use the currently defined template to serve up content in the database?
For example, I have a database of a bunch of custom content-- the name of an item, the price, etc.
I want all requests for http://myshop.com/buy/* to be redirected to the plugin (so that the plugin handles the content generation), where the * is an item number or some other parameter. Can I use the Wordpress template and display my custom content? I would be handling all of the HTML generation for inserting into the template...
The best example I can find is the WP Ecommerce plugin here: http://getshopped.org/. Basically, the plugin is handling the checkout page (/checkout in most cases, /icons/checkout on IconDock). How can I do this?