kleeyoung
Member
Posted 3 years ago #
I have html sites that have wordpress blogs within them in a sub folder. Home page is index.html.
I write new articles using wordpress, but obviously those are not shown in the table of conents in the sidebar on the old html pages, of which there are many!
Is there a way to get an auto updating table of contents that would allow wordpress in a subfolder to appear on these static html pages. By the way, the html page's TOC's are in inculde files.
thanks!
Provided that you included "TOC" files are of the php variety, a simple solution can be found by adding the following code to the begining of you TOC files:
require('./wp-blog-header.php');
This will load wordpress making all of it's functions available to you. Now you can use anything that you like:
wp_list_pages();
wp_get_archives();
php wp_list_categories();
php wp_list_bookmarks();
If your included are of the html variety, the best option might be to make new TOC files with a php extension and then use mod_rewrite to route requests.
kleeyoung
Member
Posted 3 years ago #
Thanks. And readers: you might want to check this out...
No problem, thanks for posting the link!