边栏不显示作者评论

修改 default-widgets.php

搜索代码:

1
$comments = get_comments( apply_filters( 'widget_comments_args', array( 'number' = $number, 'status' = 'approve', 'post_status' = 'publish' ) ) );

修改为:

1
$comments = get_comments( apply_filters( 'widget_comments_args', array( 'number' = $number, 'status' = 'approve', 'post_status' = 'publish', 'type' = 'comment', 'user_id' = 0) ) );

'user_id' = 0 为不显示站长自己的回复

'type' = 'comment' 为只显示评论类留言,即不显示 pingback 和 trackback 类留言