Flexslider加载延迟和缺少内容

时间:2013-09-07 16:45:20

标签: flexslider

我的flexslider使用3个帖子和'精选'类别来选择滑块图片。我想在页面加载时加载滑块。主页是一个自定义模板,使用此代码进行滑块...

我的问题是:

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

0 个答案:

没有答案