2014-06-13 90 views
-1

我正在研究一個有帖子滑塊(特定類別的帖子)的項目。沒問題。但滑塊應該一次顯示4個帖子(就像每張幻燈片上的帖子網格一樣)。任何想法如何我可以解決這個問題?這是我用來在滑塊中打印帖子的代碼。這是我的第二個WordPress項目,我對PHP沒有太多的知識。感謝您的關注並對我的英語不好!每個幻燈片有4個帖子的Wordpress滑塊

<ul class="slides"> 
<?php 
query_posts(array('category_name' => 'marcar-na-timeline')); 
if(have_posts()) : while(have_posts()) : the_post(); 
?> 
<li> 
<ul> 
<li class="item"> 
<a href="<?php echo get_permalink(); ?>" class="post-item-container<?php echo $opener_class; ?>"> 
<div class="thumb"><?php the_post_thumbnail('thumbnail');?></div> 
<div class="item-content"> 
<div class="date"> 
<span class="day"><?php the_time('d'); ?></span> 
<span class="monthandyear"><?php the_time('M y'); ?></span> 
</div> 
<div class="item-description"> 
<?php echo get_uf('description'); ?> 
</div> 
<div class="clear"></div> 
</div> 
</a> 
</li> 
</ul> 
</li> 
<?php 
    endwhile; 
endif; 
wp_reset_query(); 
?> 
</ul> 

(我使用flexslider)

回答

0

使用WP_Query類:

$slider_post= new WP_Query('category_name='your catagory name'& showposts=4'); 
if($slider_post -> have_post()) : while($slider_post->have_post()){ 
     $slider_post->the_post(); 
     // echo html slider item 
} 

我希望它ü有用。

相關問題