wordpress 首页排除指定分类下的文章

wordpress yekong

最近增加了2个栏目,但是又不想这两个栏目的内容被放在首页,所以找了一个排除的办法
找到主题文件下的functions.php 填写自己想排除的分类,比如我的分类是1和93,那么输入1和93就可以了。

function exclude_category_home( $query ) {
    if ( $query->is_home ) {
        $query->set( 'cat', '-1, -93' );
    }
    return $query;
}
 
add_filter( 'pre_get_posts', 'exclude_category_home' );
喜欢