WP 1.3a4 Themes and non-WP pages
-
On my site I’m using WordPress 1.3alpha.
Beside the WP standard pages I need several (static, more or less) pages, i.e. PHP scripts. E.g. an interactive contact form (which I can’t do with the “pages” of WP).
For the layout I changed index.php, wp-comments.php and so on, the PHP pages look like
<?php require("wp-blog-header.php"); include(ABSPATH."/header.php"); ?>
CONTENT...
<?include(ABSPATH . '/footer.php'); ?>
Now I’d like to move everything in a new “Theme”. This works, the blog is showing the newly created theme without problems. But the first wp-blog-header include in the PHP pages cancel execution of my scripts and show the theme’s index.php instead. How can I avoid this?
- The topic ‘WP 1.3a4 Themes and non-WP pages’ is closed to new replies.