【发布时间】:2011-12-18 09:31:10
【问题描述】:
我从这里的某个地方得到了这段代码,只在仪表板中显示作者的评论。但它甚至没有在作者仪表板上显示任何单个评论或作者帖子。
请帮我改正。
function my_plugin_get_comment_list_by_user($clauses) { if (is_admin()) { global $user_ID, $wpdb; $clauses['join'] = ", wp_posts"; $clauses['where'] .= " AND wp_posts.post_author = ".$user_ID." AND wp_comments.comment_post_ID = wp_posts.ID"; }; return $clauses; }; // Ensure that editors and admins can moderate all comments if(!current_user_can('edit_others_posts')) { add_filter('comments_clauses', 'my_plugin_get_comment_list_by_user'); }
【问题讨论】: