2012-12-02 23 views
0

我在自定義帖子類型中有一系列帖子。他們每個人都有一個精選圖像(縮略圖)和摘錄。顯示與第一項格式不同的Wordpress循環?

我想在主頁上顯示4個項目,其中第一個項目的格式與另一個3的格式不同,例如在附加圖像中。這是如何完成的?

enter image description here

回答

2

您可以使用此計數器。參見下面的示例

<?php 
    $inc = 1; 
    $the_query = new WP_Query(); 
    $the_query->query("posts_per_page=4"); 
    if ($the_query->have_posts()) : 
    while($the_query->have_posts()) : $the_query->the_post(); 
    if($inc == 1){ 
    //first post here 
    //do stuffs here 
    } 
else{ 
    //the rest of the posts 
} 

$inc++; //counter 
endwhile; 
endif; 
wp_reset_postdata(); 
?> 
+0

不錯,簡單。我喜歡它。謝謝! – Steve

+0

我很高興它有幫助! :) – loQ

+1

您可以使用'$ the_query-> current_post'來查看帖子的INDEX。這樣,不需要創建一個計數器。 –

相關問題