add_setting( $setting_id, array( 'default' => bgbn_get_default( $setting_id ), 'type' => 'theme_mod', 'sanitize_callback' => 'bgbn_sanitize_choice', ) ); $wp_customize->add_control( $control_prefix . $setting_id, array( 'settings' => $setting_id, 'section' => $section, 'label' => __( 'Site Layout', 'bgbn' ), 'type' => 'radio', 'choices' => bgbn_get_choices( $setting_id ), 'priority' => $priority->add() ) ); // Sticky label $setting_id = $setting_prefix . '-sticky-label'; $wp_customize->add_setting( $setting_id, array( 'default' => bgbn_get_default( $setting_id ), 'type' => 'theme_mod', 'sanitize_callback' => 'esc_html', 'transport' => 'postMessage' // Asynchronous preview ) ); $wp_customize->add_control( $control_prefix . $setting_id, array( 'settings' => $setting_id, 'section' => $section, 'label' => __( 'Sticky Label', 'bgbn' ), 'type' => 'text', 'priority' => $priority->add() ) ); } endif;