'site-css-print-method', 'section' => 'utilities', 'type' => 'radio-buttonset', 'title' => esc_html__( 'CSS Print Method' , 'analytica' ), 'default' => 'external', 'options' => [ 'external' => esc_html__( 'External File', 'analytica' ), 'internal' => esc_html__( 'Internal Embedding', 'analytica' ), ], ], [ 'id' => 'site-settings-update-time', 'title' => 'Time', 'type' => 'hidden', 'sanitize_callback' => 'time', ], ]; return array_merge( $controls, $new_controls ); } add_action( 'customize_register', 'analytica_add_utilities_panels_and_sections' ); /** * Create the customizer panels and sections */ function analytica_add_utilities_panels_and_sections( $wp_customize ) { $wp_customize->add_section( 'utilities', [ 'title' => esc_html__( 'Theme Utilities', 'analytica' ), 'priority' => 90, ] ); }