WordPress无限制加载文章
WordPress怎样利用ajax无限制筛选导入分类性文章呢?wordpress通过在页面进行无限制的加载文章,以下是应用效果:
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筛选分类的地方
0条评论