<?php wp_enqueue_script( 'jquery'); ?>
<script>
jQuery(document).ready(function () {
// ajax pagination
jQuery('#navigation a').live('click', function () { // if not using wp_pagination, change this to correct ID
var link = jQuery(this).attr('href');
// #main is the ID of the outer div wrapping your posts
jQuery('#main').html('<div><img src="images/loader.gif"></div>');
// #entries is the ID of the inner div wrapping your posts
jQuery('#main').load(link + ' #entry')
});
}); // end ready function
</script>
不是只写文本,而是可以插入 loader.gif 图像吗?