If your home page is a PHP document, it’s pretty easy to accomplish:
http://wordpress.org/support/topic/24027#post-180517
Thanks, I looked at that but I’ve got 2 issues with that:
- I loose my current template design as soon as I put that code in, and turn WP_USE_THEMES’, from true to false
- “From there you can use all the standard WordPress functions and template tags. Just make sure the require has the correct path for wp-blog-header.php.” I don’t know what functions and tags to use?? Where can I read about these? Admin panel??? I looked through the wp-blog-header.php and it makes a tiny bit of sense to me.
Thanks
All you have to do is add the Loop to your pre-existing webpage.
http://codex.wordpress.org/The_Loop
For more info, please do a search here for “integrate” or “the loop”.
Why would my template (in HTML) dissapear though?? I close off the <?php ?> tags.. so shouldnt the HTML still display??
Make sure this occurs *before* you include wp-blog-header.php:
define('WP_USE_THEMES', false);
If that doesn’t work, try removing the line altogether.
Thanks for pointing that out, KafkaesquÃ. I’ve updated the Codex entry.