Exclude Categories from Posts page

Exclude Categories from Posts page

Some users would like to exclude certain categories from the posts page. This can be done with the following PHP snippet:

add_filter('pre_get_posts', 'excludeCat');
function excludeCat($query) {
if ( $query->is_home ) {
$query->set('cat', '-3,-5,-23');
}
return $query;
}

Simply add your category IDs in there instead of the 3, 5 and 23 (examples) and keep the minuses in there.

發表回覆

您的郵箱地址不會被公開。 必填項已用 * 標註