我想显示文章列表,但我想在第一个位置显示我的第二篇文章,然后是最后一篇。
例:第1条第2条第3条第4条待定:第2条第1条第3条第4条
我正在使用这个while循环:
<?php
$i = 0;
$the_query = new WP_Query( \'showposts=35&offset=0\' );
while ($the_query -> have_posts()) : $the_query -> the_post();
$i++;
if ($i==2) {
echo \'Article2: \'.the_title();
}
if ($i==1) {
echo \'Article1: \'.the_title();
}
endwhile;
?>
但结果是:第1条第2条
我想呈现这个:Article2 Article1
提前感谢您!
PS:我想这样做是因为我想要不同位置的文章(如CNN),我不想重复WP\\U查询主页上的所有34篇文章。。。因此,我使用if语句。
如果你认为这不是一个好问题,请不要问我,如果你愿意,我会删除我的帖子。