Forums

[resolved] Show something only on home page (3 posts)

  1. L3monade
    Member
    Posted 2 years ago #

    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.

  2. esmi
    Theme Diva & Forum Moderator
    Posted 2 years ago #

    Try:

    <?php if( is_front_page() ) : ?>
    <?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;?>
    <?php endif;?>
  3. L3monade
    Member
    Posted 2 years ago #

    Works.

    Thank you very much.

Topic Closed

This topic has been closed to new replies.

About this Topic