diff --git a/wp-content/themes/twentyfourteen/functions.php b/wp-content/themes/twentyfourteen/functions.php index 13bc2210ea..5acb1bb796 100644 --- a/wp-content/themes/twentyfourteen/functions.php +++ b/wp-content/themes/twentyfourteen/functions.php @@ -279,7 +279,7 @@ function twentyfourteen_continue_reading_link() { /** * Replace "[...]" (appended to automatically generated excerpts) with an - * ellipsis and twentyeleven_continue_reading_link(). + * ellipsis and twentyfourteen_continue_reading_link(). * * @since Twenty Fourteen 1.0 * diff --git a/wp-content/themes/twentyfourteen/inc/customizer.php b/wp-content/themes/twentyfourteen/inc/customizer.php index 051dea5628..04bd944af8 100644 --- a/wp-content/themes/twentyfourteen/inc/customizer.php +++ b/wp-content/themes/twentyfourteen/inc/customizer.php @@ -8,16 +8,18 @@ */ /** - * Add postMessage support for site title and description for the Theme Customizer. + * Implement Theme Customizer additions and adjustments. * * @since Twenty Fourteen 1.0 * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function twentyfourteen_customize_register( $wp_customize ) { + // Add postMessage support for site title and description. $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; - + + // Add the custom accent color setting and control. $wp_customize->add_setting( 'accent_color', array( 'default' => '#24890d', 'sanitize_callback' => 'twentyfourteen_generate_accent_colors',