如果要排除类别存档页面中的某些子类别,请尝试在函数中输入以下代码。php:
function exclude_category( $query ) {
if ( $query->is_category( \'myslug\' ) && $query->is_main_query() ) {
$query->set( \'cat\', \'-1,-1347\' ); //Add your excluded subcategories ids
}
}
add_action( \'pre_get_posts\', \'exclude_category\' );
如果不是这样,我们需要您的代码来了解整个情况。