From 2c3006d7a1cd5c7a50b5dd7ddb9f2601bbc74245 Mon Sep 17 00:00:00 2001 From: Helen Hou-Sandi Date: Tue, 15 Nov 2016 21:19:40 +0000 Subject: [PATCH] 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. git-svn-id: https://develop.svn.wordpress.org/trunk@39256 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/theme.php | 38 +++++++++++++++++++++++++++++--------- 1 file changed, 29 insertions(+), 9 deletions(-) diff --git a/src/wp-includes/theme.php b/src/wp-includes/theme.php index 9e72a888d7..c4ec5943f9 100644 --- a/src/wp-includes/theme.php +++ b/src/wp-includes/theme.php @@ -1865,25 +1865,45 @@ function get_theme_starter_content() { 'object_id' => '{{contact-us}}', ), - 'link_yelp' => array( - 'title' => _x( 'Yelp', 'Theme starter content' ), - 'url' => 'https://www.yelp.com', + 'link_email' => array( + 'title' => _x( 'Email', 'Theme starter content' ), + 'url' => 'mailto:wordpress@example.com', ), 'link_facebook' => array( 'title' => _x( 'Facebook', 'Theme starter content' ), 'url' => 'https://www.facebook.com/wordpress', ), - 'link_twitter' => array( - 'title' => _x( 'Twitter', 'Theme starter content' ), - 'url' => 'https://twitter.com/wordpress', + 'link_foursquare' => array( + 'title' => _x( 'Foursquare', 'Theme starter content' ), + 'url' => 'https://foursquare.com/', + ), + 'link_github' => array( + 'title' => _x( 'GitHub', 'Theme starter content' ), + 'url' => 'https://github.com/wordpress/', ), 'link_instagram' => array( 'title' => _x( 'Instagram', 'Theme starter content' ), 'url' => 'https://www.instagram.com/explore/tags/wordcamp/', ), - 'link_email' => array( - 'title' => _x( 'Email', 'Theme starter content' ), - 'url' => 'mailto:wordpress@example.com', + 'link_linkedin' => array( + 'title' => _x( 'LinkedIn', 'Theme starter content' ), + '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(