Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何通过 Wordpress 中的特殊帖子类别过滤“edit-comments.php”中的评论。
add_action('pre_get_comments', 'filt_comm'); function filt_comm($query) { $query->query_vars['??'] = ??; }
如果只想在某些类别中对 edit-comments.php 做一些事情,你可以试试这个
<?php $category = get_the_category(); if($category[0]->cat_name == 'category name') { //Do something here; } ?>