我想在我的WP主题中为索引、类别和归档使用无限滚动。官方的WP插件似乎不支持分类和归档,所以我想我应该手动安装,但是我无法让它正常工作。
例如,这就是我的类别。php看起来像-
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="category">
<?php $category = get_the_category(); query_posts(\'cat=\' . $category[0]->cat_ID . \'&paged=\' . $paged); ?>
<?php while ( have_posts() ) : the_post(); ?>
<article>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
</div>
<div id="pagination">
<?php next_posts_link(); ?>
</div>
<?php get_footer(); ?>
I包括的最新版本可在中找到
https://github.com/paulirish/infinite-scroll/, 然后使用它的默认设置运行它,其中我将#category设置为有效的容器,并对itemSelector进行分类。navSelector设置为#pagination,nextSelector设置为#pagination a:first,这似乎是正确的。虽然我没有收到JS错误,但什么都没有发生。我看到了静态的下一个帖子链接,它正常工作。我错过了什么?