Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 5, 2021 13:10
Show Gist options
  • Save wpmu-authors/8dbacbc201c7b3036408092cb35334dd to your computer and use it in GitHub Desktop.
Save wpmu-authors/8dbacbc201c7b3036408092cb35334dd to your computer and use it in GitHub Desktop.
customizer_settings.php
/*******************************************
Color settings
********************************************/
//logo position
$wp_customize->add_setting( 'wpmu_nav_color' );
$wp_customize->add_control( 'wpmu_nav_color', array (
'label' => 'Navigation Menu Color',
'section' => 'wpmu_colors',
'settings' => 'wpmu_header_color',
'type' => 'radio',
'choices' => array(
'blue' => __( 'Blue', 'wpmu' ),
'red' => __( 'Red', 'wpmu' ),
'green' => __( 'Green', 'wpmu' ),
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment