Forums

how to exclude categoris from archives? (3 posts)

  1. sandrodz
    Member
    Posted 3 years ago #

    Hi, I'm trying to exclude certain categories from my blog, is this correct?

    function myFilter($query) {
    	if ($query->is_home || $query->is_feed || $query->is_archive) {
    		$query->set('cat','-210');
    	}
    
    return $query;
    }
    
    add_filter('pre_get_posts','myFilter');

    but it still shows up under categories, any help with that?

    also in archives, it does exclude post, but still displays +1 extra post that doesn't exist inside, how to fix that?

  2. sandrodz
    Member
    Posted 3 years ago #

    anyone?

  3. TheSuwaiDotCom
    Member
    Posted 3 years ago #

    I'm not sure if we're thinking about the same thing, but read this and try the plug-in offered towards the bottom of the page:

    http://www.codehooligans.com/2008/04/27/simply-exclude-plugin/

Topic Closed

This topic has been closed to new replies.

About this Topic