如何创建粘性侧边栏?

时间:2013-09-07 作者:OKdk

我如何给这三个帖子不同的div类?我正在使用推特引导程序,我试图给出第一篇帖子和最后一篇帖子

<?php query_posts(\'category_name=Menucard\'); ?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    <div class="span4 post move pull-left">
        <?php
            //echo post here
            the_content();
        ?>

    </div> <!-- close .post div -->

    <?php
        $counter++;
        if ($counter % 3 == 0) {
        echo \'<div style="clear:both;"></div>\';
        }
    ?>

1 个回复
SO网友:jepser

我不太理解您的问题,但请尝试以下操作(使用bootstrap v3):

<div class="clearfix">
<?php $a = 0; $classes = array(\'post-1\',\'post-2\',\'post-3\');
 query_posts(\'category_name=Menucard\'); ?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    <div class="<?php echo $classes[$a]; ?> col-4 post move pull-left">
        <?php
            //echo post here
            the_content();
        ?>

    </div> <!-- close .post div -->

    <?php
        $a++; endwhile;
        endif;

    ?>
</div>

结束

相关推荐