我正在使用此代码显示我的 10 个主页帖子:
<?php query_posts('category_name=homepage&showposts=10&order=DESC');?>
<?php while ( have_posts() ) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
我想以某种方式识别第一篇文章并仅为第一篇文章更改代码,例如,第一篇文章应该向我显示 the_excerpt 而不是 the_title,如下所示:
<?php query_posts('category_name=homepage&showposts=10&order=DESC');?>
<?php while ( have_posts() ) : the_post(); ?>
<?php the_excerpt(); ?>
<?php the_content(); ?>
<?php endwhile; ?>