• Hello, I’m really woundering if there some plugin, or something esle that can hide posts from front page in some categories.
    I’m using automatic youtube video poster, so I need that that posts from that category only appeared in archives.
    Thank You good people!

Viewing 2 replies - 1 through 2 (of 2 total)
  • try writing a query in the index.php before the loop starts.

    <?php query_posts('showposts&cat=-2');
    while(have_posts()): ......
    ....
    endwhile;
    wp_reset_query(); ?>

    where ‘2’ is the id of the category you wish to exclude from the posts to be displayed.

    Thread Starter pwnd

    (@pwnd)

    abooze, thanks for fast reply, but can You help me out.
    I’m not strong at editing php and I dont know the full working code for this type of situation

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to make posts from category not vissable on front page’ is closed to new replies.