With WP, if you add the following to a file in a subfolder of your installation, then you'll get all the function and design of the header in that file. (change THEMENAME to the actual name of the theme, obviously)
You can now call any function from WP in that page, so, if you want the sidebar, use:PHP Code:<?php
require_once('../wp-blog-header.php') ;
require_once('../wp-content/themes/THEMENAME/header.php');
?>
Wherever you want the sidebar.PHP Code:<?php get_sidebar(); ?>
LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks