这可能有点棘手,但我正在寻找一种方法,使wp admin上的最近评论小部件更有用/更受操作驱动。我希望能够过滤,只显示悬而未决的评论(因为这些需要对他们采取行动)。我在第45行看到wp-admin/includes/dashboard.php
有:
// Recent Comments Widget
if ( is_blog_admin() && current_user_can(\'moderate_comments\') ) {
if ( !isset( $widget_options[\'dashboard_recent_comments\'] ) || !isset( $widget_options[\'dashboard_recent_comments\'][\'items\'] ) ) {
$update = true;
$widget_options[\'dashboard_recent_comments\'] = array(
\'items\' => 5,
);
}
$recent_comments_title = __( \'Recent Comments\' );
wp_add_dashboard_widget( \'dashboard_recent_comments\', $recent_comments_title, \'wp_dashboard_recent_comments\', \'wp_dashboard_recent_comments_control\' );
}
但我对正确的方法(或者如果有方法)有点模糊,无法连接到这个来修改显示的注释的“类型”。任何帮助都将不胜感激。谢谢