我有一个WP博客,主题基于F5(Reverie)。当前使用子主题来处理自定义样式等。

另外,我正在使用Infinite Scroll(JetPack插件的一部分)来管理主页和存档页面上的分页。

问题
初始加载第一组帖子(设置为6)时看起来不错。当我单击该按钮以触发无限滚动时,又有六个负载(看起来仍然不错)。加载另一个,然后3列网格开始破裂(丢失浮动)。起初我以为可能是帖子使用的图像。我什至尝试停用一些我认为可能是问题的插件。没运气。

我还尝试过调整帖子的CSS(高度,最小-最大),以查看是否有帮助。不行

home.php

<div class="row" id="content-home">
    <div class="small-12 columns" id="content" role="main">
        <h5 style="margin-left:15px;">Latest Posts</h5>
        <?php query_posts('offset=1'); ?>
        <?php if ( have_posts() ) : ?>

            <?php /* Start the Loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>
                <?php get_template_part( 'content', get_post_format() ); ?>
            <?php endwhile; ?>

            <?php else : ?>
                <?php get_template_part( 'content', 'none' ); ?>

        <?php endif; // end have_posts() check ?>

    </div>
</div>


content.php

<article id="post-<?php the_ID(); ?>" <?php post_class('index-card small-12 large-4 columns'); ?>>
<header>
    <a href="<?php the_permalink(); ?>"><?php if ( has_post_thumbnail() ) {the_post_thumbnail('large'); } ?></a>
</header>
<div class="entry-content">
    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    <?php bvblog_small_meta(); ?>
</div>

最佳答案

.row .small-12.columns#content article {
    display: inline-block;
    float: left !important;
    min-height: 540px;
}

10-06 11:32