我的flexslider使用3个帖子和'精选'类别来选择滑块图片。我想在页面加载时加载滑块。主页是一个自定义模板,使用此代码进行滑块...
我的问题是:
以下是滑块自定义主页模板的代码。
.........................................................
get_header(); ?>
<div class="flex-container">
<div class="flexslider">
<ul class="slides">
<?php
query_posts(array('category_name' => 'featured', 'posts_per_page' => 3));
if(have_posts()) :
while(have_posts()) : the_post();
?>
<li>
<?php the_post_thumbnail(); ?>
<div class="flex-caption">
<div class="flex-caption-title">
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
</div>
<p><?php echo get_slider_excerpt(); ?>
<a href="<?php the_permalink() ?>">...</a></p>
</div>
</li>
<?php
endwhile;
endif;
wp_reset_query();
?>
</ul>
</div>
</div>