如果要使用与循环中其他帖子不同的HTML显示循环中的第一篇帖子,只需使用If/else语句即可。
$post_count = 0;
if ( have_posts() ) {
/* Start the Loop */
while ( have_posts() ) { the_post();
if ($post_count == 0) {
// Display 6-wide column
// This will be executed just once for first post.
$post_count ++;
} else {
// Display 3-wide posts
}
}
} else {
// No posts
}
这是你遇到的问题还是其他问题?