芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/timucuy.com/wp-content/themes/hestia/assets/js/admin/hestia-pagebuilder.js
/** * Script for page builders integration * * @package Hestia */ /* global hestiaBuilderIntegration */ jQuery( document ).ready( function () { jQuery( '.main > section:not(#about)' ).each( function() { if ( jQuery( this ) !== 'undefined' ) { jQuery( this ).append( '
' + hestiaBuilderIntegration.hideString + '
' ); } } ); jQuery( '.hestia-pagebuilder-section-remove' ).on( 'click', function() { var clickedSection = jQuery( this ).parent().parent(); var sectionId = jQuery( clickedSection ).attr( 'id' ); jQuery.ajax( { url: hestiaBuilderIntegration.ajaxurl, data: { section: sectionId, nonce: hestiaBuilderIntegration.nonce, action: 'hestia_pagebuilder_hide_frontpage_section' }, type: 'post', success: function() { jQuery( clickedSection ).fadeOut(); } } ); } ); } );