block with styles for this particular control */ public $style = array( 'before' => '', 'after' => '', 'general' => '' ); /** * Constructor */ function __construct( $manager, $id, $args ) { // i18n $this->checked_label = __( 'Show', 'baton' ); $this->unchecked_label = __( 'Hide', 'baton' ); // Actions/ Filters add_action( 'customize_controls_print_styles', array( $this, 'customize_controls_print_styles' ) ); // Output styles in the Customizer // Call the parent constructor here parent::__construct( $manager, $id, $args ); } /** * This function renders the control's content. */ public function render_content() { ?>