我在 jquery 选项卡内部遇到了一些分页问题。我使用了 Ajax 分页,因为它工作得很好,但不幸的是,当我第二次点击任何页面没有(分页)时。然后它破坏了链接。请看前视图它是如何工作的:http: //kelts.wpengine.com/7664-top-o-the-morning-312/ 打开最近的相关帖子->点击分页的任何页面
请确保我使用的是 wp-pagination();。
<script type="text/javascript">
jQuery(".larger.page").live("click", function(e) {
e.preventDefault();
var href = jQuery(this).attr("href");
show_posts(href.replace(/.*page\//, ""));
});
show_posts(1);
});
function show_posts(l) {
jQuery.get("<?php bloginfo('template_directory')?>/fetch-blog-post.php", {
pageno : l
}, function(data) {
jQuery("#show_posts").html(data).show();
});
}
</script>