WordPress无限制加载文章

WordPress无限制加载文章,第1张

WordPress怎样利用ajax无限制筛选导入分类性文章呢?wordpress通过在页面进行无限制的加载文章,以下是应用效果:

WordPress无限制加载文章,第2张

JS代码

jQuery('.cat-nav > li > a').on('click',function(){

var next_url = jQuery(this).attr("href");

jQuery('.cat-nav > li').removeClass('current-menu-item');

jQuery(this).parent().addClass('current-menu-item');

jQuery.ajax({

type: 'get',

url: next_url + '#posts',

success: function(data){

posts = jQuery(data).find("#posts .post");

if (next_url.indexOf("page") < 1) {

jQuery("#posts").html('');

}

jQuery("#posts").append(posts.fadeIn(100));

}

});

return false;

});

添加到要显示ajax筛选分类的地方

WordPress无限制加载文章,第3张

DABAN RP主题是一个优秀的主题,极致后台体验,无插件,集成会员系统
网站模板库 » WordPress无限制加载文章

0条评论

发表评论

提供最优质的资源集合

立即查看 了解详情