【问题标题】:how can i filter comments in 'edit-comments.php' by special categories in Wordpress?如何按 Wordpress 中的特殊类别过滤“edit-comments.php”中的评论?
【发布时间】:2013-02-20 21:58:01
【问题描述】:

如何通过 Wordpress 中的特殊帖子类别过滤“edit-cmets.php”中的 cmets。

add_action('pre_get_comments', 'filt_comm');

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

【问题讨论】:

标签: wordpress filter


【解决方案1】:

如果只想在特定类别中使用edit-cmets.php 做一些事情,你可以试试这个

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

【讨论】:

  • 谢谢,但我想过滤编辑 cmets 页面的当前查询。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2022-01-06
  • 2012-06-19
相关资源
最近更新 更多