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