Make WordPress Core


Ignore:
Timestamp:
10/15/2013 06:00:28 PM (11 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: minor fixes to docs, props celloexpressions. See #25257

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/inc/customizer.php

    r25790 r25792  
    99
    1010/**
    11  * Add postMessage support for site title and description for the Theme Customizer.
     11 * Implement Theme Customizer additions and adjustments.
    1212 *
    1313 * @since Twenty Fourteen 1.0
     
    1616 */
    1717function twentyfourteen_customize_register( $wp_customize ) {
     18    // Add postMessage support for site title and description.
    1819    $wp_customize->get_setting( 'blogname' )->transport        = 'postMessage';
    1920    $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
    20 
     21   
     22    // Add the custom accent color setting and control.
    2123    $wp_customize->add_setting( 'accent_color', array(
    2224        'default'           => '#24890d',
Note: See TracChangeset for help on using the changeset viewer.