无法在Wordpress自定义查询中重置发布数据

时间:2018-12-24 07:38:36

标签: wordpress

编辑-我已经尝试过wp_reset_query()无效,第一个循环按预期执行,但是第二个循环只是跳转到else而我得到了not working 我在一个页面中使用2个自定义WP_Query循环,第一个是从某个类别获取帖子,第二个是按日期获取帖子,

这是代码

            <?php
            $args = array(
                'post_type' => 'post',
                'post_status' => 'any',
                'category' => 3,
                'posts_per_page' => 4);
            $wpdb = new WP_Query($args);
            if ($wpdb->have_posts()):
                while ($wpdb->have_posts()):
                    $wpdb->the_post(); ?>
                    <div class="patta p-4 col-lg-3 col-md-6">
                        <!-- FIX THIS -->
                        <img class="card-img-top"
                             src="<?php the_post_thumbnail(); ?>"
                             alt="<?php the_post_thumbnail_caption() ?>"/>
                        <h4><b><?php the_title(); ?></b><br></h4>
                        <p>
                            <a href="#">Link</a>
                        </p>
                    </div>
                <?php
                endwhile;
                wp_reset_postdata();
            endif;
            ?>

第二循环

<?php
            $args = array(
                'post_type' => 'post',
                'post_status' => 'any',
                'orderby' => 'post_date',
                'order' => 'DESC',
                'posts_per_page' => 4);
            $wpdb = new WP_Query($args);
            if ($wpdb->have_posts()):
                while ($wpdb->have_posts()):
                    $wpdb->the_post(); ?>
                    <div class="patta p-4 col-lg-3 col-md-6">
                        <!-- FIX THIS -->
                        <img class="card-img-top"
                             src="<?php if (the_post_thumbnail()): the_post_thumbnail(); else:echo 'https://lamasec.pythonanywhere.com/static/img/vulnhub.png';endif; ?>"
                             alt="<?php the_post_thumbnail_caption() ?>"/>
                        <h4><b><?php the_title(); ?></b><br></h4>
                        <p>
                            <a href="#">Link</a>
                        </p>
                    </div>
                <?php
                endwhile;
                wp_reset_postdata();
                else: echo 'not working';
            endif;
            ?>

我正在使用wp_reset_postdata();,但似乎没有用。

2 个答案:

答案 0 :(得分:0)

在一页here中阅读了多个循环的文档后,两个循环中只有一个WP_Query。我存储了所需类别中所有帖子的ID,并在第二个循环中检查它们,并在它们上continue进行检查。这是最终代码-

第一次循环

        <?php
        $args = array(
            'post_type' => 'post',
            'post_status' => 'any',
            'category' => 3,
            'posts_per_page' => 4);
        $wpdb = new WP_Query($args);
        if ($wpdb->have_posts()):
        while ($wpdb->have_posts()):
            $wpdb->the_post();
            $do_not_duplicate[] = $post->ID; ?>
            <div class="patta p-4 col-lg-3 col-md-6">
                <!-- FIX THIS -->
                <img class="card-img-top"
                     src="<?php the_post_thumbnail(); ?>"
                     alt="<?php the_post_thumbnail_caption() ?>"/>
                <h4><b><?php the_title(); ?></b><br></h4>
                <p>
                    <a href="#">Link</a>
                </p>
            </div>
        <?php endwhile; ?>

第二循环

if (have_posts()):
                while (have_posts()):
                    the_post();
                    if (in_array($post->ID, $do_not_duplicate)) continue;
                    ?>
                    <div class="patta p-4 col-lg-3 col-md-6">
                        <!-- FIX THIS -->
                        <img class="card-img-top"
                             src="<?php the_post_thumbnail(); ?>"
                             alt="<?php the_post_thumbnail_caption() ?>"/>
                        <h4><b><?php the_title(); ?></b><br></h4>
                        <p>
                            <a href="#">Link</a>
                        </p>
                    </div>
                <?php
                endwhile;
                endif;
            endif;
            ?>

答案 1 :(得分:-1)

您还应该使用: wp_reset_query()