args = $args; parent::__construct( $manager, $id, $args ); } /** * Enqueue scripts/styles. * * @since 1.0.0 * @access public * @return void */ public function enqueue() { wp_enqueue_script( 'customizer-select-multiple', ITALYSTRAP_PLUGIN_URL . '/src/Customizer/js/customizer-select-multiple.min.js', array( 'jquery' ), // array( 'jquery', 'customize-preview' ), // Con customize-preview si blocca il "torna indietro" null, true ); } /** * Render the content of the category dropdown */ public function render_content() { if ( ! isset( $this->args['choices'] ) ) { $this->args['choices'] = array(); } if ( ! is_array( $this->args['choices'] ) ) { $this->args['choices'] = array(); } ?>