php 使用Wordpress循环的Bootstrap列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用Wordpress循环的Bootstrap列相关的知识,希望对你有一定的参考价值。

<!--    Display Custom Post Entries with Set Number of Bootstrp Columns-->
                    <?php
                    $post_type = 'our_team';
                    $columns_num = 3; // The number of columns we want to display our posts,  value must divide number 12 (bootstrap columns) without rest. So just 1, 2, 3, 4 and 6 are acceptible.
                    $i = 0; //Counter for .row divs
                    ?>

                  <div class="row"> <!-- Open First Row -->

        <?php $loop = new WP_Query( array( 'post_type' => $post_type,
                'posts_per_page' => 20,
                ‘category_name => ‘news’,
                ‘Author_name’ => ‘matt’ )
        );
        while ( $loop->have_posts() ) : $loop->the_post();
        
                      echo '<div class="single-product-archive col-md-' . 12 / $columns_num . '">' ?>

            <?php // ********** BEGIN COLUMN CONTENT *********** // ?>

                        <h1><?php echo get_the_title(); ?> </h1>
                        <div class="the_content">
                            <?php the_content(); ?>
                        </div>

            <?php // ********** END COLUMN CONTENT *********** // ?>

                <?php     echo '</div>'; // ?>

                <?php if($i % $columns_num == $columns_num - 1 ) {
                      echo '</div> <div class="row">';
                        }

                        $i++; ?>

        <?php endwhile; wp_reset_query(); ?>


</div> <!-- CLose Last Row -->

以上是关于php 使用Wordpress循环的Bootstrap列的主要内容,如果未能解决你的问题,请参考以下文章

php 无论如何,获取WordPress帖子图片。必须在循环中使用。

PHP 使用循环外的自定义字段自定义Wordpress查询

php Wordpress循环/循环

PHP 基本的Wordpress循环

PHP Wordpress循环,样式显示不同的帖子

PHP Wordpress:检索循环外的帖子类别