On my barack obama biography site, I want to have some static text at the top where the first post normally is. New posts will always be below this text. And this text should only show on the first page of the blog. I will pay $7.50 via paypal to the first person to link me to a plugin that does this as I can't seem to find one. Thanks.
http://wordpress.org/extend/plugins/wp-sticky/ Allows you to create a post that is always on the top of the your index page. If this is what you're looking for, my pp is .
Is there a plugin that allows me to insert the text without editing a file? Close, but I don't want it to be a linked post, just static text. Thanks though mate.
All information, tutorial and tools explain here http://www.nathanrice.net/blog/definitive-sticky-posts-guide-for-wordpress-27/ Code (markup): Full with picture
Go to design>theme editor and select "index.php" Find the following text <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> PHP: Add this before the abv text <?php if($_SERVER['REQUEST_URI']=="/") echo "Your Text here"; ?> PHP: example: <?php if($_SERVER['REQUEST_URI']=="/") echo "obama takes the oath"; ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> PHP: Tested ... It worked fine my wordpress blog