Add Text To Home Page Only on WordPress Blog
WordPress 3.01
I wanted to add a little snippet of unique text, and have it display on my self hosted WP blog home page ONLY. It was actually very easy.
I added this code to my theme index.php:
<?php if(is_home() && !is_paged()):?>write text here<?php endif;?>
Note – I did not want a static home page for my wordpress blog (I wanted to display all my posts, but on the home page, just have a small piece of text on my blog home and no other pages or posts).
Simple stuff.
Written by Shaun Anderson