Make WordPress Core

Changeset 25792


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

Location:
trunk/src/wp-content/themes/twentyfourteen
Files:
2 edited

Legend:

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

    r25788 r25792  
    280280/**
    281281 * Replace "[...]" (appended to automatically generated excerpts) with an
    282  * ellipsis and twentyeleven_continue_reading_link().
     282 * ellipsis and twentyfourteen_continue_reading_link().
    283283 *
    284284 * @since Twenty Fourteen 1.0
  • 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.