Integrating Wordpress
I must admit that this simple trick took me forever and a day to figure out, so here is this quick tutorial to help you frustrated wordpress users.
Step one: Go to the Options panel of your WP administration and where it says blog address url, type the address of where you’d like to see your blog. Below is an example.

Step two: Create a new *.php document and insert the following code below. If you would like your WP blog to be on the index page of your site, simply name your document index.php
<?php
/* Short and sweet */
define(’WP_USE_THEMES’, true);
require(’./wordpress/wp-blog-header.php’);
?>
Step three: Upload your document (index.php, or whatever name you decided to go with) onto your server and you’re good to go! Simple, isn’t it?
WAIT! How do you save a file in *.php format?
I think the simplest method is to use Window’s notepad (Sorry Mac users). Go to File, Save As and follow the example image below!
