Forums

[resolved] query_posts: show category but exclude some posts from it (4 posts)

  1. simasa
    Member
    Posted 2 years ago #

    Hello,

    I am trying to show one category, but exclude some posts from it. How come this code doesn't work?

    query_posts(array('cat=5'&"post__not_in" => array(30)));

    It should show category 5 but exclude post 30. However, it only shows category 5 but does not exclude anything. Any help?

  2. MichaelH
    Volunteer
    Posted 2 years ago #

    Try:

    $args=array(
      'category__in' => array(5),
      'post__not_in' => array(30)
    );
    query_posts($args);
  3. simasa
    Member
    Posted 2 years ago #

    THANK YOU A LOT.

    This code works.

    Cheers.

  4. christianeheim
    Member
    Posted 2 years ago #

    Hey guys,

    where do I have to put this code?

    Thanks for your help!

Topic Closed

This topic has been closed to new replies.

About this Topic