На примере изотопа и кнопки загрузить еще
jQuery(function($){
$('#true_loadmore').on('click', function(){
var button = $(this);
var data = {
'action': 'loadmore',
'query': loadmore_params.posts, // that's how we get params from wp_localize_script() function
'page' : loadmore_params.current_page
};
$.ajax({
url : loadmore_params.ajaxurl,
data : data,
type : 'POST',
beforeSend : function (xhr) {
button.text(loadmoreBtnLoading);
},
success : function(data){
if( data ) {
var $container = $('.portfolio-wrap');
var $el = $(data);
// imagesLoaded фиксит косяки изотопа
$el.imagesLoaded(function() {
$container.append($el).isotope('appended', $el, true);
});
button.text(loadmoreBtnShowMore);
loadmore_params.current_page++;
if ( loadmore_params.current_page == loadmore_params.max_pages ) {
button.remove();
}
// you can also fire the "post-load" event here if you use a plugin that requires it
// $( document.body ).trigger( 'post-load' );
} else {
button.remove(); // если мы дошли до последней страницы постов, скроем кнопку
}
}
});
});
});