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

git-svn-id: https://develop.svn.wordpress.org/trunk@25792 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Lance Willett 2013-10-15 18:00:28 +00:00
parent bc64bbb1ef
commit 77f48b5d8b
2 changed files with 5 additions and 3 deletions

View File

@ -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
*

View File

@ -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',