WP_Query()之后的空内容

时间:2017-07-26 05:20:06

标签: php wordpress

我有一个调用特定页面的插件。下面的代码工作正常并调用我的模态中的页面,但由于某种原因,使用此代码后页面的其余部分不会执行并返回空:

        $args = array(
          'p'         => 33, // ID of a page, post, or custom type
          'post_type' => 'any'
            );

        $my_query = new WP_Query($args);

        while ($my_query->have_posts()) : $my_query->the_post(); ?>
            <div class="entry">
                <?php the_content(); ?>
            </div>
        <?php 

        wp_reset_postdata();
        endwhile; 

知道发生了什么事吗?

谢谢,

1 个答案:

答案 0 :(得分:0)

尝试wp_reset_query();而不是wp_reset_postdata();结束之后; 这可能适合你。