如何通过Wordpress中的特殊类别过滤'edit-comments.php'中的评论?

时间:2013-02-20 08:52:08

标签: wordpress filter

如何通过Wordpress中的特殊帖子类别过滤'edit-comments.php'中的评论。

add_action('pre_get_comments', 'filt_comm');

function filt_comm($query) {
 $query->query_vars['??'] = ??;
}

1 个答案:

答案 0 :(得分:0)

如果想在某些类别中使用edit-comments.php做某事,可以试试这个

<?php
   $category = get_the_category(); 
   if($category[0]->cat_name == 'category name') {
       //Do something here;
   }
?>