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; } ?>