Changeset 42590
- Timestamp:
- 01/24/2018 04:50:15 PM (7 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r42579 r42590 5326 5326 * @param string The emoji base URL for png images. 5327 5327 */ 5328 'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2. 3/72x72/' ),5328 'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.4/72x72/' ), 5329 5329 5330 5330 /** … … 5344 5344 * @param string The emoji base URL for svg images. 5345 5345 */ 5346 'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2. 3/svg/' ),5346 'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2.4/svg/' ), 5347 5347 5348 5348 /** … … 5466 5466 5467 5467 /** This filter is documented in wp-includes/formatting.php */ 5468 $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2. 3/72x72/' );5468 $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.4/72x72/' ); 5469 5469 5470 5470 /** This filter is documented in wp-includes/formatting.php */ -
trunk/src/wp-includes/general-template.php
r42531 r42590 2938 2938 */ 2939 2939 /** This filter is documented in wp-includes/formatting.php */ 2940 $hints['dns-prefetch'][] = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2. 3/svg/' );2940 $hints['dns-prefetch'][] = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2.4/svg/' ); 2941 2941 2942 2942 foreach ( $hints as $relation_type => $urls ) {
Note: See TracChangeset
for help on using the changeset viewer.