/* ------------------------------------------------------------------------------ * Author: DMCWebZone * Author URL: https://web-zone.org * Copyright © Airin Blog by DMCWebZone. All Rights Reserved. * @package Airin Blog * Description: Post loading in categories (Button - Show more) * ------------------------------------------------------------------------------ */ jQuery(function($) { 'use strict'; function airinblogAjaxLoadMore($lay) { // Caption while loading $('#airinblog-id-loadmore-button'+$lay).text(airinblog_localize_loadmore.delay); var data = { 'action': 'airinblog-action-loadmore'+$lay, 'query': true_posts, 'page': current_page }; $.ajax({ url: ajaxurl, data: data, type: 'POST', success: function (data) { if (data) { $('#airinblog-id-loadmore').before(data); // Return inscription, after loading $('#airinblog-id-loadmore-button'+$lay).text(airinblog_localize_loadmore.more); current_page++; if (current_page == max_pages) $(".airinblog-css-loadmore").remove(); // Support for fluently blocks $('.airinblog-css-cat-grid').each(function() { $(this).css({ 'opacity':'1', 'transform':'translateY(0)' }); }); } else { $('.airinblog-css-loadmore').remove(); } } }); } $('#airinblog-id-loadmore-button').click(function() { airinblogAjaxLoadMore(''); }); // A separate script for the HOME-PAGE is required. There is no way to check the home page when the ajax content is already defined. $('#airinblog-id-loadmore-button-home').click(function() { airinblogAjaxLoadMore('-home'); }); });