• I need to exclude one category from Feed, so I add the following function to the functions.php, however, it doesn’t work. How to fix it?

    function ExcludeCategory($query) {
    if ($query->is_feed) {
    $query->set(‘cat’,’-1716′);
    }
    return $query;
    }
    add_filter(‘pre_get_posts’,’ExcludeCategory’);

    PLZ help, thanks a lot.

The topic ‘Exclude Category from Feed doesn't work’ is closed to new replies.