当前位置:首页 > CMS教程 > WordPress > 列表

WordPress后台显示相关用户文章相关联的评论

发布:smiling 来源: PHP粉丝网  添加日期:2014-03-18 14:05:56 浏览: 评论:0 

将下面的代码添加到当前主题的 functions.php 文件即可,代码如下:

  1. //后台只显示当前用户文章关联的评论 
  2. function wpdx_get_comment_list_by_user($clauses) { 
  3.         if (is_admin()) { 
  4.                 global $user_ID$wpdb
  5.                 $clauses['join'] = ", wp_posts"
  6.                 $clauses['where'] .= " AND wp_posts.post_author = ".$user_ID." AND wp_comments.comment_post_ID = wp_posts.ID"
  7.         }; 
  8.         return $clauses
  9. }; 
  10. if(!current_user_can('edit_others_posts')) { 
  11. add_filter('comments_clauses''wpdx_get_comment_list_by_user'); 
注:如果你的WordPress所使用的数据库前缀不是默认的 wp_,请将第 5 、6 行中的 wp_ 修改为你的WordPress站点的数据库前缀.

Tags: WordPress 相关文章 关联评论

分享到: