From a19a2ad8b16b77dfbdcbd1646b4bfc59000a67b5 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 16 Aug 2021 12:54:58 +0000 Subject: [PATCH] Twenty Twenty: Add support for `wa.me` links in Social menu. This ensures that `wa.me` links, currently preferred by WhatsApp, have the same icon as `whatsapp.com` links. Follow-up to [47243], [51617]. Props sabernhardt, macmanx. Fixes #50542. Built from https://develop.svn.wordpress.org/trunk@51618 git-svn-id: http://core.svn.wordpress.org/trunk@51224 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../twentytwenty/classes/class-twentytwenty-svg-icons.php | 4 ++++ wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php b/wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php index 7fee14b569..d735037543 100644 --- a/wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php +++ b/wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php @@ -223,6 +223,10 @@ if ( ! class_exists( 'TwentyTwenty_SVG_Icons' ) ) { 'twitch' => array( 'twitch.tv', ), + 'whatsapp' => array( + 'wa.me', + 'whatsapp.com', + ), 'wordpress' => array( 'wordpress.com', 'wordpress.org', diff --git a/wp-includes/version.php b/wp-includes/version.php index 8fffad4186..465e82c1a8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51617'; +$wp_version = '5.9-alpha-51618'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.