我正在使用 jQuery Infinite Scroll 插件 - https://github.com/paulirish/infinite-scroll/ 来显示我的分页 WordPress 评论。
该插件在查看从旧到新的评论时工作正常(我认为这是默认选项),但如果 WordPress 中的讨论选项设置为以下:
Break comments into pages with [XX] top level comments per page and the
[LAST] page displayed by default
Comments should be displayed with the [NEWER] comments at the top of each page
然后无限滚动不再起作用。
看问题,好像是因为如果设置如上,那么WordPress会显示的第一个评论页面是最后一个,所以即
WordPress 1st comment page displayed = http://MYLINK/comment-page-5
WordPress 2nd comment page displayed = http://MYLINK/comment-page-4
WordPress 3rd comment page displayed = http://MYLINK/comment-page-3
等等
但是,我认为Infinite Scroll 想要增加每一页,所以在显示第一页(实际上是第 5 页)之后,Infinite Scroll 正在寻找不存在的第 6 页。
查看 IS 选项,有一个pathParse选项 - 但没有说明如何使用它的文档。我什至不能 100% 确定这是否会有所帮助。
我(和许多其他人)会非常感谢您提供的任何帮助。