好的,解决方案是,如果站点没有任何评论(已批准、待定、垃圾或垃圾邮件),则在下面隐藏评论菜单。
function remove_commentsmenu() {
global $user_ID;
if ( 1 > wp_count_comments( get_the_ID() )->total_comments && 1 > wp_count_comments( get_the_ID() )->trash ) {
remove_menu_page( \'edit-comments.php\' );
}
}
add_action( \'admin_menu\', \'remove_commentsmenu\' );