From d5ac67924792e95cd339be20e11dc553119bdc9d Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 16 Aug 2021 12:51:01 +0000 Subject: [PATCH] Twenty Seventeen: Add support for `wa.me` links in Social Links menu. This ensures that `wa.me` links, currently preferred by WhatsApp, have the same icon as `whatsapp.com` links. Follow-up to [48027]. Props sabernhardt, carepsules, dkarfa. Fixes #51946. Built from https://develop.svn.wordpress.org/trunk@51617 git-svn-id: http://core.svn.wordpress.org/trunk@51223 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyseventeen/inc/icon-functions.php | 1 + wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentyseventeen/inc/icon-functions.php b/wp-content/themes/twentyseventeen/inc/icon-functions.php index 44bfe9ec53..82a1ebedcc 100644 --- a/wp-content/themes/twentyseventeen/inc/icon-functions.php +++ b/wp-content/themes/twentyseventeen/inc/icon-functions.php @@ -205,6 +205,7 @@ function twentyseventeen_social_links_icons() { 'vimeo.com' => 'vimeo', 'vine.co' => 'vine', 'vk.com' => 'vk', + 'wa.me' => 'whatsapp', 'whatsapp.com' => 'whatsapp', 'wordpress.org' => 'wordpress', 'wordpress.com' => 'wordpress', diff --git a/wp-includes/version.php b/wp-includes/version.php index 389446c53e..8fffad4186 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51611'; +$wp_version = '5.9-alpha-51617'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.