- Timestamp:
- 11/02/2018 11:52:16 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-content/themes/twentynineteen/inc/customizer.php
r43842 r43860 50 50 'colorscheme', 51 51 array( 52 'type' => 'radio',52 'type' => 'radio', 53 53 'label' => __( 'Color Scheme', 'twentynineteen' ), 54 54 'choices' => array( 55 'default' => _ _( 'Default', 'twentynineteen' ),56 'custom' => _ _( 'Custom', 'twentynineteen' ),55 'default' => _x( 'Default', 'color scheme', 'twentynineteen' ), 56 'custom' => _x( 'Custom', 'color scheme', 'twentynineteen' ), 57 57 ), 58 58 'section' => 'colors', … … 63 63 // Add primary color setting and control. 64 64 $wp_customize->add_setting( 65 'colorscheme_ hue',65 'colorscheme_primary_hue', 66 66 array( 67 67 'default' => 199, … … 74 74 new WP_Customize_Color_Control( 75 75 $wp_customize, 76 'colorscheme_ hue',76 'colorscheme_primary_hue', 77 77 array( 78 'label' => __( 'Primary Color' ),79 'description' => __( 'Changes the Color of the Featured Image overlay, Buttons, Links etc.' ),78 'label' => __( 'Primary Color', 'twentynineteen' ), 79 'description' => __( 'Changes the Color of the Featured Image overlay, Buttons, Links etc.', 'twentynineteen' ), 80 80 'section' => 'colors', 81 81 'mode' => 'hue',
Note: See TracChangeset
for help on using the changeset viewer.