我wp_query中的帖子重复

时间:2017-06-11 11:45:43

标签: php wordpress

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();
?>

0 个答案:

没有答案