所以,如果我有一个像这样的简单循环: 我如何在不同的栏目中输出帖子? 就像进入左右列的奇数/偶数帖子一样(出于造型目的)。
我可以编写一个过滤器来为每个连续的帖子添加类,但是我需要在单个/归档页面上用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; ?>