我在两列中水平显示二十十个主题类别的帖子,例如:
我正在使用以下代码:
<?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) == 0) :
$wp_query->next_post(); else : the_post(); ?>
<div id="left-column">
<h1><?php the_permalink(); ?></h1>
<?php the_content(); ?>
</div>
<?php endif; endwhile; else: ?>
<?php endif; ?>
<?php $i = 0; rewind_posts(); ?>
<?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) !== 0) : $wp_query->next_post(); else : the_post(); ?>
<div id="right-column">
<h1><?php the_permalink(); ?></h1>
<?php the_content(); ?>
</div>
<?php endif; endwhile; else: ?>
<?php endif; ?>
如果我单击帖子 #1 并移动到单个帖子显示页面,则显示完整的帖子并在页面的顶部/底部出现两个链接(下一篇文章,上一篇文章)。然后单击下一个帖子链接,它会显示帖子#3。但我需要显示帖子#2,然后发布#3,帖子#4....怎么可能。?
谢谢