PHP Pages In WordPress
WordPress pages are a lot simpler to use than php pages, but many new users may not be familiar with these and may choose to use php pages instead. This tutorial shows you how to call your WordPress theme so it shows up on your php pages.
1. To start you need to change your php includes to the code below.
<?php require('YOURABSOLUTEPATH/YOURWORDPRESSFOLDER/wp-blog-header.php'); ?>
<?php get_header(); ?>
YOUR PAGE CONTENT HERE
<?php get_footer(); ?>
2. Type in your absolute path and the name of your WordPress folder where it says in the code above.
To find your absolute path click for a tutorial here
Now you just need to change all the rest of your pages and then they will all display your WordPress Theme on them.






