有沒有人有如何獲得沒有評論,並有特定標籤的帖子的想法?WordPress的:獲得零評論和特定標籤的職位?
我試圖
$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」的說法的帖子!爲什麼?什麼是正確的解決方案?
謝謝。
我以爲是這樣:)好吧,看來我不得不汗一點點。不過,非常感謝。 – MSX 2012-04-16 12:38:36