Customize: Correct a comment in `get_theme_starter_content()` added in [39561].
The item name is `link_home`, not `home_link`. See #39104. Built from https://develop.svn.wordpress.org/trunk@39751 git-svn-id: http://core.svn.wordpress.org/trunk@39689 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
979152be92
commit
03c6dc1002
|
@ -1977,7 +1977,7 @@ function get_theme_starter_content() {
|
||||||
'title' => _x( 'Home', 'Theme starter content' ),
|
'title' => _x( 'Home', 'Theme starter content' ),
|
||||||
'url' => home_url(),
|
'url' => home_url(),
|
||||||
),
|
),
|
||||||
'page_home' => array( // Deprecated in favor of home_link.
|
'page_home' => array( // Deprecated in favor of link_home.
|
||||||
'type' => 'post_type',
|
'type' => 'post_type',
|
||||||
'object' => 'page',
|
'object' => 'page',
|
||||||
'object_id' => '{{home}}',
|
'object_id' => '{{home}}',
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.8-alpha-39744';
|
$wp_version = '4.8-alpha-39751';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue