Bundled Themes: Add Mastodon domains for menu item icons.
This changeset adds the top 10 Mastodon domains by popularity to Twenty Twenty and Twenty Twenty-One Social icon feature. Note: other Mastodon domains can be added to the array of domain mapping using `twentytwenty_social_icons_map` and `twenty_twenty_one_social_icons_map` filters. Props triumvirate, sabernhardt, audrasjb, peterwilsoncc, rryyaanndd, ianbelanger. Fixes #57293, #49099. Built from https://develop.svn.wordpress.org/trunk@55061 git-svn-id: http://core.svn.wordpress.org/trunk@54594 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4191d80f70
commit
19e75805b0
|
@ -214,6 +214,18 @@ if ( ! class_exists( 'TwentyTwenty_SVG_Icons' ) ) {
|
|||
'mail' => array(
|
||||
'mailto:',
|
||||
),
|
||||
'mastodon' => array(
|
||||
'mastodon.social',
|
||||
'pawoo.net',
|
||||
'mstdn.jp',
|
||||
'mastodon.cloud',
|
||||
'mastodon.online',
|
||||
'counter.social',
|
||||
'mstdn.social',
|
||||
'mas.to',
|
||||
'mastodon.world',
|
||||
'gc2.jp',
|
||||
),
|
||||
'pocket' => array(
|
||||
'getpocket.com',
|
||||
),
|
||||
|
|
|
@ -127,6 +127,18 @@ class Twenty_Twenty_One_SVG_Icons {
|
|||
'mail' => array(
|
||||
'mailto:',
|
||||
),
|
||||
'mastodon' => array(
|
||||
'mastodon.social',
|
||||
'pawoo.net',
|
||||
'mstdn.jp',
|
||||
'mastodon.cloud',
|
||||
'mastodon.online',
|
||||
'counter.social',
|
||||
'mstdn.social',
|
||||
'mas.to',
|
||||
'mastodon.world',
|
||||
'gc2.jp',
|
||||
),
|
||||
'pocket' => array(
|
||||
'getpocket.com',
|
||||
),
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.2-alpha-55060';
|
||||
$wp_version = '6.2-alpha-55061';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue