( function( $, api ) { api.controlConstructor['dropdown-taxonomies'] = api.Control.extend( { ready: function() { var control = this; $( 'select', control.container ).change( function() { control.setting.set( $( this ).val() ); } ); } } ); api.sectionConstructor['upsell'] = api.Section.extend( { attachEvents: function () {}, isContextuallyActive: function () { return true; } } ); } )( jQuery, wp.customize );