( function( api ) { // Extends our custom "azera-shop-frontpage-sections" section. api.sectionConstructor['azera-shop-frontpage-sections'] = api.Section.extend( { // No events for this type of section. attachEvents: function () {}, // Always make the section active. isContextuallyActive: function () { return true; } } ); api.sectionConstructor['azera-shop-frontpage-instructions'] = api.Section.extend( { // No events for this type of section. attachEvents: function () {}, // Always make the section active. isContextuallyActive: function () { return true; } } ); api.sectionConstructor['azera-shop-order-upsell'] = api.Section.extend( { // No events for this type of section. attachEvents: function () {}, // Always make the section active. isContextuallyActive: function () { return true; } } ); api.sectionConstructor['azera-shop-view-pro'] = api.Section.extend( { // No events for this type of section. attachEvents: function () {}, // Always make the section active. isContextuallyActive: function () { return true; } } ); } )( wp.customize );