在新年前 Kayo 写了一篇文章介绍瀑布流布局及通用的网站 Ajax 分页方法,现在再介绍一下针对 WordPress 的 Ajax 分页。
Ajax 分页的原理就不在这里介绍了,有兴趣的童鞋可以参考 《瀑布流布局与 jQuery Ajax 分页》,下面开始介绍 Ajax 分页 WordPress 版。
一.加载 jQuery 库
既然是 jQuery 驱动的 Ajax ,加载 jQuery 库是必须的。
二.文章列表格式
在你的文章列表页面(首页 index.php、归档 archive.php )需要确保有以下类似的结构
1 2 3 4 5 6 7 8 9 | <!-- 包含所有文章的容器 --> < div id = "content" > <!-- 各文章的容器 --> < div class = "post" ></ div > < div class = "post" ></ div > < div class = "post" ></ div > < div class = "post" ></ div > < div class = "post" ></ div > </ div > |
三.加入默认导航
因为 Ajax 分页每次获取的是下一页的内容,因此只需调用 WordPress 的默认导航。在你的 index.php (或是其他文章列表页面)加入以下代码,生成默认的 WordPress 导航。
1 | < div id = "pagination" ><? php next_posts_link(__('LOAD MORE')); ?></ div > |
四.Ajax 获取下一页
在你的主题 js 文件里加入以下代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | // 使用 live() 使 js 对通过 Ajax 获得的新内容仍有效 $( "#pagination a" ).live( "click" , function (){ $( this ).addClass( "loading" ).text( "LOADING..." ); $.ajax({ type: "POST" , url: $( this ).attr( "href" ) + "#content" , success: function (data){ result = $(data).find( "#content .post" ); nextHref = $(data).find( "#pagination a" ).attr( "href" ); // 渐显新内容 $( "#content" ).append(result.fadeIn(300)); $( "#pagination a" ).removeClass( "loading" ).text( "LOAD MORE" ); if ( nextHref != undefined ) { $( "#pagination a" ).attr( "href" , nextHref); } else { // 若没有链接,即为最后一页,则移除导航 $( "#pagination" ).remove(); } } }); return false ; }); |
五.滚动触发翻页
如果想当鼠标滚动到接近页面底部时自动翻页,则可以把代码改成下面的样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | // 给浏览器窗口绑定 scroll 事件 $(window).bind( "scroll" , function (){ // 判断窗口的滚动条是否接近页面底部 if ( $(document).scrollTop() + $(window).height() > $(document).height() - 10 ) { $( this ).addClass( 'loading' ).text( 'LOADING...' ); $.ajax({ type: "POST" , url: $( this ).attr( "href" ) + "#content" , success: function (data){ result = $(data).find( "#content .post" ); nextHref = $(data).find( "#pagination a" ).attr( "href" ); // 渐显新内容 $( "#content" ).append(result.fadeIn(300)); $( "#pagination a" ).removeClass( "loading" ).text( "LOAD MORE" ); if ( nextHref != undefined ) { $( "#pagination a" ).attr( "href" , nextHref); } else { // 若没有链接,即为最后一页,则移除导航 $( "#pagination" ).remove(); } } }); } }); |
六.添加导航 css
为导航添加一段 css 美化一下,另外还可以准备一张 gif 图来表示正在加载,下面是 Melody 的样式:
1 2 3 4 5 | #pagination { padding : 20px 0 0 30px ; } #pagination .nextpostslink { width : 600px ; color : #333 ; text-decoration : none ; display : block ; padding : 9px 0 ; text-align : center ; font-size : 14px ; } #pagination .nextpostslink:hover { background-color : #cccccc ; text-decoration : none ; border-radius : 5px ; -moz- border-radius : 5px ; -webkit- border-radius : 5px ; } #pagination .loading { background : url ( "images/loading.gif" ) 240px 9px no-repeat ; color : #555 ; } #pagination .loading:hover { background-color : transparent ; cursor : default ; } |
本文由 Kayo Lee 发表,本文链接:https://kayosite.com/jquery-ajax-turn-page-for-wordpress.html
评论列表
折腾了下,稍微改了些代码,可是又出现重复加载,比如第二页,同时加载了好几次。不知道如何破呢?
PS:代码改动主要是添加了$this = $(“#pagination a”);,然后把$(this)换成了$this。就出现了重复加载的情况。
测试了一下,点击Load More后却不会加载,页面还是被翻页了,是什么情况?我的JQ版本哦1.9.0mini
这个方法只使用固定连接是默认情况。。。
如果换了固定链接写法,就无法加载了。
输入回复内容