【发布时间】:2014-01-03 02:02:37
【问题描述】:
我正在使用下面的代码来更新特定 div (postContent) 中 Wordpress 帖子的分页内容。它工作得很好,除了我希望根据我所在的内容页面更新 URL。就像您在没有此代码的情况下使用 wp_link_pages 时通常所做的一样。
谢谢
jQuery(function($) {
$('#content').on('click', '#pagination a', function(e){
e.preventDefault();
var link = $(this).attr('href');
$('#content').fadeOut(500, function(){
$(this).load(link + ' #content', function() {
$(this).fadeIn(500);
});
});
});
});
【问题讨论】:
标签: jquery ajax wordpress pagination