Forums

Can't exclude posts in specific categories from front page (2 posts)

  1. deserturchin
    Member
    Posted 3 years ago #

    I am using the Brajeshwar theme and it has a foreach loop rather than a while loop. I don't know if that makes any difference but I've tried an "if - continue" function to exclude certain categories but it hasn't worked.

    Does anyone know of a plugin that will help me exclude posts in specific categories and works on a theme with a foreach loop rather than a while loop?

  2. MichaelH
    Volunteer
    Posted 3 years ago #

    That theme looks to use the template tag, get_posts(), in a number of places so you will need to use the cat=-x type parameter or the category_not_in parameter.

    $posts = get_posts('cat=-5');

    $post = get_posts(array('category__not_in' => array(2,6)));

    Both forms are described in the query_posts() article.

Topic Closed

This topic has been closed to new replies.

About this Topic