5

我的 flexslider 使用 3 个具有“特色”类别的帖子来选择滑块的图像。我希望在页面加载时加载滑块。主页是一个自定义模板,使用此代码进行滑块...

我的问题是:

  1. 主页加载时没有加载,有延迟
  2. 它没有显示所有 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>
4

0 回答 0