我在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;
}?>
你有什么想法,为什么会这样?提前谢谢了!
答案 0 :(得分:0)
设置最小高度:600px&#39;这个div&#39; col-md-4&#39;。增加最小高度并检查。