我想在索引页面(砌体布局)上显示 3 或 4 个不同的类别。每个类别在帖子中显示不同的颜色(如显示的页面)假设我想在接下来的 5 个帖子中继续以蓝色框颜色发布?
我可以对条件语句使用相同的循环吗?或者做什么最好?
http://libra-frisk.com/planeta/
<ul id="customCategory" class="group">
<?php while ( have_posts() ) : the_post(); ?>
<li>
<?php
if ( has_post_thumbnail()) {
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large');
echo '<a href="' . $large_image_url[0] . '" title="' . the_title_attribute('echo=0') . '" >';
the_post_thumbnail('featuredImg');
echo '</a>';
}
?>
<h2><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="info"></div>
</li>
<?php endwhile ;?>
</ul>