所以我正在写一个wordpress循环,我希望我的循环调用最新的十五页(不使用任何帖子,所以永远不是一个选项)然后我循环通过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>
答案 0 :(得分: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
看起来不错。