显示Wordpress循环与第一项不同的格式?

时间:2012-12-02 01:48:35

标签: wordpress-theming wordpress

我在自定义帖子类型中有一系列帖子。它们每个都有特色图像(缩略图)和摘录。

我想在主页上显示4个项目,第一个项目的格式与其他3个不同,例如在附加的图像中。怎么做的?

enter image description here

1 个答案:

答案 0 :(得分:4)

您可以使用计数器。见下面的示例

 <?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();
 ?>