まだコメントがなく、特定のタグが付いている投稿を取得する方法を知っている人はいますか?
私は試した
$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」の引数があっても、すでにコメントされている投稿も得られます。なんで?正しい解決策は何ですか?
ありがとう。