Wordpress网格显示空条目

时间:2018-05-28 11:15:27

标签: php wordpress

我在wordpress中创建了一个网格。但有时我会得到空的条目。 enter image description here

<div class="row">
    <?php

    if ( have_posts() ) {
        while ( have_posts() ) : the_post();

              ?>

                  <div class="col-md-4">
                    <?php $kale_entry = 'small'; include(locate_template('parts/entry.php')); ?>
                  </div>
                <?php
        endwhile;

    }?>

你有什么想法,为什么会这样?提前谢谢了!

1 个答案:

答案 0 :(得分:0)

设置最小高度:600px&#39;这个div&#39; col-md-4&#39;。增加最小高度并检查。