HY! 我的wp_query有重复帖子的问题! 我有几次,出现相同的文章
我的代码是:
<?php
$do_not_duplicate = array();
$query = new WP_Query(array(
'category__not_in' => array(
32
)
));
if ($query->have_posts()):
while ($query->have_posts()):
$query->the_post();
$do_not_duplicate[] = $post->ID;
global
$section_id = get_the_ID($post);
$tw_categories = get_categories();
stuff....
endwhile;
endif;
wp_reset_query();
?>