基本上,当我在Wordpress Admin中查看所有帖子页面时,我想过滤掉特定类别中的所有帖子,以便现在显示在那里。
经过一些搜索,我找到了这个钩子,但它在这个实例中不起作用。
function exclude_category_posts( $query ) {
if ( $query->is_main_query() && !is_admin() && $query->is_home() ) {
$query->set( \'cat\', \'-13, -14, -15, -16\' );
}
}
add_filter( \'pre_get_posts\', \'exclude_category_posts\' );
提前感谢