/* Customizer JS Upsale*/ jQuery(document).ready(function($){ function blook_reorder_sections( container ){ var sections = []; var sectionName; $( container+' .control-section' ).each(function(){ sectionName = $(this).attr('aria-owns'); sectionName = sectionName.replace( "sub-accordion-section-", ""); sections.push(sectionName); }); var sections = sections.toString(); var data = { 'action': 'blook_reorder_home_section', 'sections': sections, '_wpnonce': blook_re_customizer.ajax_nonce, }; $.post( ajaxurl, data, function(response) { wp.customize.previewer.refresh(); }); } $('#sub-accordion-panel-theme_front_page_panel').sortable({ axis: 'y', items: '.control-section', update: function( event, ui ) { blook_reorder_sections( '#sub-accordion-panel-theme_front_page_panel' ); }, }); });