来源
WordPress站点首页只展示某个分类文章的实现方法 – 33Blog 技术博客
分类id寻找

代码
function exclude_home_categories( query ) {
if (query->is_home() && query->is_main_query() ) {
query->set( 'category__not_in', array( 22 ) );
}
}
add_action( 'pre_get_posts', 'exclude_home_categories' );
文章评论