存档页面上每行的帖子(自定义帖子类型)

时间:2015-12-24 作者:Barbara

如果我有3个以上的帖子,我在显示多行帖子时会遇到问题。如果我有更多帖子,如何设置更多行?例如,如果我有7篇文章,我应该有3行。我可以这样做吗?如果是,如何进行?

<div class="row-fluid shop-products" >
    <ul class="thumbnails" >
    <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
        <li class="item span4" >
            <div class="thumbnail" id="archive_thumbnail">
                <a href="<?php the_permalink();?>" class="image">
                    <img src="<?php the_field( \'photo\' ) ?>" alt="" id="archive_photo">
                    <span class="frame-overlay"></span>
                    <span class="price"><?php the_field( \'price_from\' ) ?></span>
                </a>
                <div class="inner notop nobottom">
                    <h4 class="title"><?php the_field( \'title\' )?></h4>
                    <p class="description"><?php the_field( \'content\' ) ?></p>
                </div>
            </div>
            <div class="inner darken notop">
                <a href="#" class="btn btn-add-to-cart">Add<i class="icon-shopping-cart"></i></a>
            </div>
        </li>
    <?php endwhile; ?>
    </ul>
</div>

1 个回复
SO网友:Madhav Poudel

使用ul和li的div instread并使其宽度为行的1/3,或使用count integer变量并使在整数后插入行的逻辑可被3整除。

相关推荐

Increase offset while looping

我正在编写一个自定义帖子插件,它将自定义帖子分组显示为选项卡。每组4个岗位。是否可以编写一个偏移量随每次循环而增加的查询?因此,结果将是:-第一个查询显示从1到4的帖子-第二个查询显示从5到8的帖子-第三个查询显示从9到12的帖子等。 <div class=\"official-matters-tabs\"> <?php $args = array(\'post_type\' => \'official-matters\', \'showp