Changeset 25792
- Timestamp:
- 10/15/2013 06:00:28 PM (11 years ago)
- Location:
- trunk/src/wp-content/themes/twentyfourteen
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/functions.php
r25788 r25792 280 280 /** 281 281 * Replace "[...]" (appended to automatically generated excerpts) with an 282 * ellipsis and twenty eleven_continue_reading_link().282 * ellipsis and twentyfourteen_continue_reading_link(). 283 283 * 284 284 * @since Twenty Fourteen 1.0 -
trunk/src/wp-content/themes/twentyfourteen/inc/customizer.php
r25790 r25792 9 9 10 10 /** 11 * Add postMessage support for site title and description for the Theme Customizer.11 * Implement Theme Customizer additions and adjustments. 12 12 * 13 13 * @since Twenty Fourteen 1.0 … … 16 16 */ 17 17 function twentyfourteen_customize_register( $wp_customize ) { 18 // Add postMessage support for site title and description. 18 19 $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; 19 20 $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; 20 21 22 // Add the custom accent color setting and control. 21 23 $wp_customize->add_setting( 'accent_color', array( 22 24 'default' => '#24890d',
Note: See TracChangeset
for help on using the changeset viewer.