0

我想在索引页面(砌体布局)上显示 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>
4

1 回答 1

0

我是移动的,所以我不能提供太多代码。但是用 $i 递增,然后任何 > 5 的东西都会得到你的内容、样式等的蓝色版本。

于 2013-08-11T12:58:19.557 回答