Twenty Fourteen: minor fixes to docs, props celloexpressions. See #25257
Built from https://develop.svn.wordpress.org/trunk@25792 git-svn-id: http://core.svn.wordpress.org/trunk@25704 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c1ab04b466
commit
b4b6c09476
|
@ -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
|
||||
*
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue