将页面上的多个类别拆分为两列的最佳方式是什么?
现在我不需要A类进入第1列,也不需要B/C/D类进入第2列。我只需要将多个类别分为两列,而不管它们是什么。
当前页面的代码如下所示:
<?php get_header(); ?>
<div id="articles-wrap" class="row span_9">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php include (TEMPLATEPATH . \'/_/inc/meta.php\' ); ?>
<div class="entry">
<?php the_content(); ?>
</div>
<footer class="postmetadata">
<?php the_tags(\'Tags: \', \', \', \'<br />\'); ?>
Posted in <?php the_category(\', \') ?> |
<?php comments_popup_link(\'No Comments »\', \'1 Comment »\', \'% Comments »\'); ?>
</footer>
</article>
<?php endwhile; ?>
<?php include (TEMPLATEPATH . \'/_/inc/nav.php\' ); ?>
<?php else : ?>
<h2>Not Found</h2>
<?php endif; ?>
</div><!-- articles-wrap | row span_9 -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
谢谢