Make WordPress Core


Ignore:
Timestamp:
11/02/2018 11:52:16 PM (7 years ago)
Author:
allancole
Message:

Importing Twenty Nineteen, our new default theme for 2019, set for 5.0.

Let Gutenberg shine with this simple, fast, and powerful theme. Initial development occurred on GitHub. See: https://github.com/WordPress/twentynineteen

Props allancole, karmatosed, kjellr, yingling017, mrasharirfan, milana_cap, fabiankaegy, westonruter, aaronjorbin, netweb, b-07, khleomix, blowery, dereksmart, jasmussen, audrasjb, nielslange, mmaumio, dimadin, joyously, anevins12, peterwilsoncc, dannycooper, icaleb, siriokun, technosiren, travel_girl, azchughtai, ianbelanger, nadim1992, ismailelkorchi, nativeinside, chetan200891, icaleb, grapplerulrich, ocean90, joshfeck, frankew, abdulwahab610, mendezcode, eliorivero, melchoyce, joen, laurelfulford, mdawaffe, kraftbj, dsmart, mukeshpanchal27, burhandodhy, crunnells, Ismail-elkorchi, aryaprakasa.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/5.0/src/wp-content/themes/twentynineteen/inc/customizer.php

    r43842 r43860  
    5050        'colorscheme',
    5151        array(
    52             'type'    => 'radio',
     52            'type'     => 'radio',
    5353            'label'    => __( 'Color Scheme', 'twentynineteen' ),
    5454            'choices'  => array(
    55                 'default'  => __( 'Default', 'twentynineteen' ),
    56                 'custom' => __( 'Custom', 'twentynineteen' ),
     55                'default'  => _x( 'Default', 'color scheme', 'twentynineteen' ),
     56                'custom' => _x( 'Custom', 'color scheme', 'twentynineteen' ),
    5757            ),
    5858            'section'  => 'colors',
     
    6363    // Add primary color setting and control.
    6464    $wp_customize->add_setting(
    65         'colorscheme_hue',
     65        'colorscheme_primary_hue',
    6666        array(
    6767            'default'           => 199,
     
    7474        new WP_Customize_Color_Control(
    7575            $wp_customize,
    76             'colorscheme_hue',
     76            'colorscheme_primary_hue',
    7777            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' ),
    8080                'section'     => 'colors',
    8181                'mode'        => 'hue',
Note: See TracChangeset for help on using the changeset viewer.