Created
February 5, 2021 13:10
-
-
Save wpmu-authors/8dbacbc201c7b3036408092cb35334dd to your computer and use it in GitHub Desktop.
customizer_settings.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/******************************************* | |
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