我想从我的主页中排除类别,但我希望它们仍然显示在主页上显示的侧边栏中,我如何才能做到这一点?
目前,我的代码从内容区域和侧栏中排除,我正在将代码放入函数中。php文件:
function exclude_category_home( $query ) {
if ( $query->is_home ) {
$query->set( \'cat\', \'-5, -34\' );
}
return $query;
}
add_filter( \'pre_get_posts\', \'exclude_category_home\' );