(function (api) { // Extends our custom "business-roy" section. api.sectionConstructor['business-roy'] = api.Section.extend({ // No events for this type of section. attachEvents: function () { }, // Always make the section active. isContextuallyActive: function () { return true; } }); api.sectionConstructor['business-roy-upgrade-section'] = api.Section.extend({ // No events for this type of section. attachEvents: function () { }, // Always make the section active. isContextuallyActive: function () { return true; } }); })(wp.customize);