將下面的代碼添加到當前主題的 functions.php 文件即可,代碼如下:
- //后臺只顯示當前用戶文章關聯的評論
- function wpdx_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;
- };
- if(!current_user_can('edit_others_posts')) {
- add_filter('comments_clauses', 'wpdx_get_comment_list_by_user');
- }
新聞熱點
疑難解答
圖片精選