因此,如果我有一个像这样的简单循环:我将如何在不同的列中输出帖子?就像奇数/偶数帖子进入左右列(用于样式目的)。
我可以编写一个过滤器来将类添加到每个连续的帖子中,但是我需要在单个/存档页面上用 css 覆盖它们。我认为在 html 结构中必须有更好的方法来做到这一点。
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('posts_per_page=3&paged=' . $paged);
?>
<?php if (have_posts()) : while ( have_posts()) : the_post(); ?>
<div <?php post_class('clearfix') ?> id="post-<?php the_ID(); ?>">
<span><?php the_time('M jS, Y') ?></span>
<?php echo '<em>Written by </em> <br>'; the_author_posts_link(); ?>
<?php the_tags('Tags: ', ', ', '<br />'); ?>
<?php comments_popup_link('No Comments', '1 Comment', '% Comments', 'comments-link', ''); ?>
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php global $more; $more = 0; ?>
<?php the_post_thumbnail(); ?>
<?php the_content('Read on...'); ?>
<?php endwhile; endif; ?>