• Hi there I was wondering if anyone knew how I can have my index page show only the “news catagories” newest post instead of the whole sites posts?

Viewing 4 replies - 1 through 4 (of 4 total)
  • There may be other ways to do it but here is a suggestion. If you have your index page set to only show one post you could insert this into index.php before the loop,

    <?php
       if (is_home()) {
          query_posts('cat=1');
       }
    ?>

    Where the category ID (1) is the category you want displayed.

    Thread Starter johnanderson10

    (@johnanderson10)

    LenK thank you for your reply, But is there away to show all the post in the category ?

    The thing is I would like it so when some one visit the site they see all the recent post to the news category but not the rest of the post

    Well, if for example you have your front page set to display 5 posts or 10 posts etc then that snippet should display the latest 5 posts etc from that category – you follow? 🙂

    Thread Starter johnanderson10

    (@johnanderson10)

    Ya i see what you mean thank you so much

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘index show only’ is closed to new replies.