我想在我的wordpress侧边小部件中排除未分类的帖子评论。我认为它将在functions.php中完成。但是任何方法都可以。
谢谢!
答案 0 :(得分:1)
如果该类别中没有帖子,则可以切换默认类别槽式仪表板。
设置>写作,编辑默认帖子类别。
或尝试将其添加到functions.php:
function remove_uncategorized_category( $categories ){
foreach ( $categories as $cat_key => $category ){
if( $category->term_id == 1 ){
unset( $categories[ $cat_key ] );
}
}
return $categories;
}
add_filter('get_the_categories', 'remove_uncategorized_category', 1);