Forum Moderators: coopster
- John
Open the WordPress theme folder, open index.php, and comment out the header and footer functions and for goodness sakes...just include it's own the header and footer! Then include your own PHP header file. Here is the general overview of what the code should look like...
include("../../../my_own_custom_header.php");
//get_header();
include("header.php");
// get_footer();
include("footer.php");
Hope this helps other people out there!
- John