category__not_in doesn't work in search
-
I am trying to exclude a category from some loop and also from search results, i am using the following args array
$args = array( 'posts_per_page' => '15', 'cat' => $cat, 'paged' => $paged, 'category__not_in' => '1164', 'order' => $order );
this seems to work in normal loops, the category 1164 is removed from posts. But when the same used on search, posts in category 1164 still shows through.
please help, thanks
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘category__not_in doesn't work in search’ is closed to new replies.