若删除下图部分:
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');
评论区
发表新的留言
您可以留言提出您的疑问或建议。
您的留言得到回复时,会通过您填写的邮箱提醒您。