/**
 * 在首页中排除某些分类
 * 天美社区
 */
function exclude_category_home( $query ) {
    if ( $query->is_home ) {
    $query->set( 'cat', '-127, -1216,-173,-139' ); //要排除的分类ID,id前面有负号
    }
    return $query;
}

add_filter( 'pre_get_posts', 'exclude_category_home' );
最后修改:2025-02-01
如果觉得我的文章对你有用,请随意赞赏