Theme starter content: Add more social link items to select from.

New: Foursquare, GitHub, LinkedIn, Pinterest, and YouTube. They are also now all alphabetized.

see #38615.

Built from https://develop.svn.wordpress.org/trunk@39256


git-svn-id: http://core.svn.wordpress.org/trunk@39196 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Helen Hou-Sandí 2016-11-15 21:20:31 +00:00
parent 8485582c8a
commit d4603ec9b7
2 changed files with 30 additions and 10 deletions

View File

@ -1865,25 +1865,45 @@ function get_theme_starter_content() {
'object_id' => '{{contact-us}}', 'object_id' => '{{contact-us}}',
), ),
'link_yelp' => array( 'link_email' => array(
'title' => _x( 'Yelp', 'Theme starter content' ), 'title' => _x( 'Email', 'Theme starter content' ),
'url' => 'https://www.yelp.com', 'url' => 'mailto:wordpress@example.com',
), ),
'link_facebook' => array( 'link_facebook' => array(
'title' => _x( 'Facebook', 'Theme starter content' ), 'title' => _x( 'Facebook', 'Theme starter content' ),
'url' => 'https://www.facebook.com/wordpress', 'url' => 'https://www.facebook.com/wordpress',
), ),
'link_twitter' => array( 'link_foursquare' => array(
'title' => _x( 'Twitter', 'Theme starter content' ), 'title' => _x( 'Foursquare', 'Theme starter content' ),
'url' => 'https://twitter.com/wordpress', 'url' => 'https://foursquare.com/',
),
'link_github' => array(
'title' => _x( 'GitHub', 'Theme starter content' ),
'url' => 'https://github.com/wordpress/',
), ),
'link_instagram' => array( 'link_instagram' => array(
'title' => _x( 'Instagram', 'Theme starter content' ), 'title' => _x( 'Instagram', 'Theme starter content' ),
'url' => 'https://www.instagram.com/explore/tags/wordcamp/', 'url' => 'https://www.instagram.com/explore/tags/wordcamp/',
), ),
'link_email' => array( 'link_linkedin' => array(
'title' => _x( 'Email', 'Theme starter content' ), 'title' => _x( 'LinkedIn', 'Theme starter content' ),
'url' => 'mailto:wordpress@example.com', 'url' => 'https://www.linkedin.com/company/1089783',
),
'link_pinterest' => array(
'title' => _x( 'Pinterest', 'Theme starter content' ),
'url' => 'https://www.pinterest.com/',
),
'link_twitter' => array(
'title' => _x( 'Twitter', 'Theme starter content' ),
'url' => 'https://twitter.com/wordpress',
),
'link_yelp' => array(
'title' => _x( 'Yelp', 'Theme starter content' ),
'url' => 'https://www.yelp.com',
),
'link_youtube' => array(
'title' => _x( 'YouTube', 'Theme starter content' ),
'url' => 'https://www.youtube.com/channel/UCdof4Ju7amm1chz1gi1T2ZA',
), ),
), ),
'posts' => array( 'posts' => array(

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.7-beta3-39255'; $wp_version = '4.7-beta3-39256';
/** /**
* 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.