1

所以我正在编写一个 wordpress 循环,我希望我的循环调用最新的 15 页(不使用任何帖子,这不是一个选项),然后我循环遍历 LI 标签和 Span 标签来填充缩略图。如果您感到困惑,请查看 xxlbreakcomp.com

我的循环有效,但它只调用我的主页信息。我想我要么需要编写第二个循环或输出,但我都做了,但都没有工作。我只需要朝着正确的方向推动,但我完全迷失了。

    <footer class="footer" role="contentinfo">

            <div id="inner-footer" class="wrap clearfix">

                <div id="video-thumbs">

                      <ul id="selected">    

                <?php

                $query_args = array (
                        'orderby' => 'date',
                        'order' => 'DESC',  
                        'post_per_page' => 15, 
                        'post_type' => 'page',
                        'post__in'=> array       (4,7,8,9,15,16,17,18,19,20,21,22,23,24,25)
                    ); 

                $query = new WP_Query($query_args);

                if ( $query->have_posts() ) :       

                    while ( $query->have_posts()) : $query->the_post();

                        wp_reset_postdata ();

                        ?>
                          <li data-permalink="<?php the_permalink(); ?>" class="selected">
                          <span style= "background: url('<?php bloginfo('template_directory'); ?>/library/images/thumb_pic.png')"></span>
                          <span><?php the_title(); ?></span>
                        </li>
                        <?php
                    endwhile;
                endif;

                ?>

                <?php wp_reset_postdata (); // reset the query ?>

                </ul>

                </div>
4

1 回答 1

0

您可能正在使用 while 循环中post的调用将后台重置为默认帖子。wp_reset_postdata尝试将其删除为类似,

if ( $query->have_posts() ) :       
     while ( $query->have_posts()) : $query->the_post();
         ?>
           <li data-permalink="<?php the_permalink(); ?>" class="selected">
           <span style= "background: url('<?php bloginfo('template_directory'); ?>/library/images/thumb_pic.png')"></span>
           <span><?php the_title(); ?></span>
         </li>
         <?php
     endwhile;
endif;

wp_reset_postdata循环后的决赛看起来不错。

于 2013-07-22T10:45:57.707 回答