在WP-Admin中修改“最近评论”列表

时间:2011-12-23 作者:Zach

这可能有点棘手,但我正在寻找一种方法,使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\' );
    }
但我对正确的方法(或者如果有方法)有点模糊,无法连接到这个来修改显示的注释的“类型”。任何帮助都将不胜感激。谢谢

1 个回复
最合适的回答,由SO网友:tamilsweet 整理而成

似乎没有可用的挂钩/过滤器来控制小部件中显示的注释。您可能需要为此创建新的仪表板小部件,作为新插件或主题功能的一部分。php

结束