我目前正在为自己制作一个投资组合网站,使用修改版的“Gridly” wordpress 主题。这是当前的网站。
现在我正在尝试实现“无限滚动”插件,但我似乎无法让它工作。
我不确定这里是否有人熟悉这个特定的插件,但以防万一,我使用的选择器是:
Content Selector: #post-area
Navigation Selector: .view-older
Next Selector: .view-older a:first
Item Selector: .post
我无法真正说出与此处发布相关的代码,但这是 index.php 包含的内容:
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<div id="post-area">
<?php while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( has_post_thumbnail() ) { ?>
<div class="gridly-image"><a href="<?php the_permalink() ?>"><?php the_post_thumbnail( 'summary-image' ); ?></a></div>
<div class="gridly-category"><p><?php the_category(', ') ?></p></div>
<?php } ?>
<div class="gridly-copy"><h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<p class="gridly-date"><?php the_time(get_option('date_format')); ?> </p>
<?php the_excerpt(); ?>
<p class="gridly-link"><a href="<?php the_permalink() ?>"></a></p>
</div>
</div>
<?php endwhile; ?>
</div>
<?php else : ?>
<?php endif; ?>
<?php next_posts_link('<p class="view-older">View Older Entries</p>') ?>
<?php get_footer(); ?>
我还将行为设置为 Masonry/Isotope,并确保插件已激活。
如果有人可以帮助我解决这个问题,我将不胜感激。我(显然)不是网络开发人员,所以如果这听起来很愚蠢,请多多包涵。