I am trying to post a small selection of text/links on my front page but not on any other page.
Here is the code which works fine but shows up all all pages:
<?php query_posts('cat=3&showposts=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<h1>Featured Topic</h1>
<Strong><?php the_title(); ?></strong>
<p><?php the_content_limit(500,""); ?></p>
<a href="<?php the_permalink() ?>">Click to learn more</a>
<?php endwhile;?>
I am using a plug-in to limit the text. My home page is a page not a blog roll/post.
I'm sorry if this is answered somewhere else...I've had a good look and couldn't find anything.