php 从管理菜单中删除未经审核的注释计数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 从管理菜单中删除未经审核的注释计数相关的知识,希望对你有一定的参考价值。

<?php

function pmgarman_unmoderated_comment_counts( $stats, $post_id ) {
  global $wpdb;

  if ( 0 === $post_id ) {
	$stats = json_decode( json_encode( array(
	  'moderated'      => 0,
	  'approved'       => 0,
	  'post-trashed'   => 0,
	  'trash'          => 0,
	  'total_comments' => 0
	) ) );
  }

  return $stats;
}
add_filter( 'wp_count_comments', 'pmgarman_unmoderated_comment_counts', 10, 2 );

// If running WooCommerce, remove their filter so that nothing funky goes down
remove_filter( 'wp_count_comments', array( 'WC_Comments', 'wp_count_comments' ), 10 );

以上是关于php 从管理菜单中删除未经审核的注释计数的主要内容,如果未能解决你的问题,请参考以下文章

php 从管理菜单中删除

php 从管理菜单中删除帖子,评论和工具

php 从WordPress管理菜单中删除不需要的页面

PHP 从drupal anon作者评论中删除“未经验证”

WordPress从管理菜单中删除链接

从WordPress管理面板/仪表板删除菜单项