若删除下图部分:

add_action('init', 'remove_comment_support', 100);

function remove_comment_support()
{
    remove_post_type_support('post', 'comments');//删除“文章”的
    remove_post_type_support('page', 'comments');//删除“页面”的
}
从顶部导航中删除评论相关元素,如下图所示部分:
function d78596_admin_bar_render()
{
    global $wp_admin_bar;
    $wp_admin_bar->remove_menu('comments');
}
add_action('wp_before_admin_bar_render', 'd78596_admin_bar_render');
删除更多评论相关的模块,如下图所示:
function remove_post_metaboxes()
{
     remove_meta_box('commentstatusdiv', 'post', 'normal'); // Comments Status Metabox
    remove_meta_box('commentsdiv', 'post', 'normal'); // Comments Metabox
    remove_meta_box('trackbacksdiv', 'post', 'normal'); // Trackback Metabox
    remove_meta_box('commentstatusdiv', 'post', 'normal'); //  Discussion Metabox
    
}
add_action('admin_menu', 'remove_post_metaboxes');
相关文章:

WordPress防御垃圾评论的方法一则

WordPress从后台左导航中删除“评论”菜单