在两列中从左到右显示Wordpress帖子

时间:2017-06-29 12:13:13

标签: wordpress twitter-bootstrap

我想在两列中显示我的Wordpress帖子。目前,他们跑了一列。当我向下滚动时,我也在col-lg-2 div中重复了类别。有小费吗?谢谢!

    <div class="container">
    <?php // Display blog posts on any page @ https://m0n.co/l
    $temp = $wp_query; $wp_query= null;
    $wp_query = new WP_Query(); $wp_query->query('posts_per_page=-1' . '&paged='.$paged);
    while ($wp_query->have_posts()) : $wp_query->the_post(); ?>


        <div class="row">
            <div class="col-lg-2">
                <?php the_category(', '); ?>
            </div>

            <div class="col-lg-5">
               <?php the_post_thumbnail(); ?>
            <p><?php the_title(); ?></p>
            </div>

            <div class="col-lg-5">
            <h2><?php the_title(); ?></h2>
            </div>
        </div>


    <?php endwhile; ?>

    <?php if ($paged > 1) { ?>

    <?php } else { ?>

    <?php } ?>

    <?php wp_reset_postdata(); ?>
    </div>

0 个答案:

没有答案