2012-12-03 89 views
0

我希望有人可以幫助我,在網上尋找答案。 我在本地主機上使用http://320press.com/wpbs/作爲我的wordpress,但似乎輪播無法正常工作。wordpress引導滑塊輪播

經過我不得不提的問題,但重要的部分是第一個。

  1. 我怎樣才能讓轉盤撥打一個特定的類別,而不是顯示我的wordpress內的所有崗位的

  2. 您需要點擊箭頭,使圖像幻燈片將工作,有沒有一種方法來設置它自動滑動?

    <?php 
    
          $use_carousel = of_get_option('showhidden_slideroptions'); 
          if ($use_carousel) { 
    
          ?> 
    
          <div id="myCarousel" class="carousel slide"> 
    
           <!-- Carousel items --> 
           <div class="carousel-inner"> 
    
            <?php 
            global $post; 
            $tmp_post = $post; 
            $show_posts = of_get_option('slider_options'); 
            $args = array('numberposts' => $show_posts); // set this to how many posts you want in the carousel 
            $myposts = get_posts($args); 
            $post_num = 0; 
            foreach($myposts as $post) : setup_postdata($post); 
             $post_num++; 
             $post_thumbnail_id = get_post_thumbnail_id(); 
             $featured_src = wp_get_attachment_image_src($post_thumbnail_id, 'wpbs-featured-carousel'); 
            ?> 
    
            <div class="<?php if($post_num == 1){ echo 'active'; } ?> item"> 
             <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('wpbs-featured-carousel'); ?></a> 
    
             <div class="carousel-caption"> 
    
              <h4><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h4> 
              <p> 
               <?php 
                $excerpt_length = 100; // length of excerpt to show (in characters) 
                $the_excerpt = get_the_excerpt(); 
                if($the_excerpt != ""){ 
                 $the_excerpt = substr($the_excerpt, 0, $excerpt_length); 
                 echo $the_excerpt . '... '; 
               ?> 
               <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>" class="btn btn-primary">Read more &rsaquo;</a> 
               <?php } ?> 
              </p> 
    
             </div> 
            </div> 
    
            <?php endforeach; ?> 
            <?php $post = $tmp_post; ?> 
    
           </div> 
    
           <!-- Carousel nav --> 
           <a class="carousel-control left" href="#myCarousel" data-slide="prev">&lsaquo;</a> 
           <a class="carousel-control right" href="#myCarousel" data-slide="next">&rsaquo;</a> 
          </div> 
    
          <?php } // ends the if use carousel statement ?> 
    

非常感謝您的幫助!謝謝

回答

2

試試這個。

  1. 如何讓輪播電話調用特定的類別,而不是顯示我的wordpress中的所有文章。

給你打電話使用類傳送帶初始化沒有ID象下面這樣:

$(".class").carousel({ autoSlide: true }); 

2.You需要點擊箭頭,使圖像幻燈片將工作,是有辦法將它設置爲自動滑動? 我覺得轉盤是提供一個參數autoslide象下面這樣:

$("div").carousel({ autoSlide: true }); 

全球化志願服務青年的網站:http://www.thomaslanciaux.pro/jquery/jquery_carousel.htm#autoslide

+0

嗨感謝很多CHIRAG,我用這個:HTTP://www.lanexa.net/2012/ 04/how-to-make-bootstrap-carousel-display-wordpress-dynamic-content/ everyting is okay now – user1705333

+0

You Welcome !!! –