【发布时间】:2014-01-06 21:18:15
【问题描述】:
我正在尝试创建一个包含特色图片标题的 div,该标题显示在滑块的中间。
为什么字幕循环播放?
链接:http://natashamcdiarmid.com/clients/JLP/wp/
应该是什么样子:http://natashamcdiarmid.com/clients/JLP/
<div class="slider">
<?php query_posts( 'post_type=page' ); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_post_thumbnail('slider'); ?>
<div class="caption-wrap"><?php the_post_thumbnail_caption(); ?></div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
【问题讨论】: