diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 1b7319e36a..39328840ed 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -5325,7 +5325,7 @@ function _print_emoji_detection_script() { * * @param string The emoji base URL for png images. */ - 'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.3/72x72/' ), + 'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.4/72x72/' ), /** * Filters the extension of the emoji png files. @@ -5343,7 +5343,7 @@ function _print_emoji_detection_script() { * * @param string The emoji base URL for svg images. */ - 'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2.3/svg/' ), + 'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2.4/svg/' ), /** * Filters the extension of the emoji SVG files. @@ -5465,7 +5465,7 @@ function wp_staticize_emoji( $text ) { } /** This filter is documented in wp-includes/formatting.php */ - $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.3/72x72/' ); + $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.4/72x72/' ); /** This filter is documented in wp-includes/formatting.php */ $ext = apply_filters( 'emoji_ext', '.png' ); diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index a089fa223e..e8ce171190 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -2937,7 +2937,7 @@ function wp_resource_hints() { * The path is removed in the foreach loop below. */ /** This filter is documented in wp-includes/formatting.php */ - $hints['dns-prefetch'][] = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2.3/svg/' ); + $hints['dns-prefetch'][] = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2.4/svg/' ); foreach ( $hints as $relation_type => $urls ) { $unique_urls = array(); diff --git a/wp-includes/version.php b/wp-includes/version.php index fd7ff2dfa1..f60d1bf01f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42588'; +$wp_version = '5.0-alpha-42590'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.