有谁知道如何获取尚未发表评论且具有特定标签的帖子?
我试过
$args = array(
'tag' => $tags,
'post__not_in' => array($page_id),
'showposts'=>5,
'ignore_sticky_posts'=>1,
'comment_count' => 0
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
... the usual stuff here ...
endwhile;
}
但这也给了我已经评论过的帖子,即使有一个“'comment_count' => 0”参数!为什么?什么是正确的解决方案?
谢谢。