Make WordPress Core


Ignore:
Timestamp:
10/04/2016 03:23:22 AM (8 years ago)
Author:
pento
Message:

Emoji: Add support for the upcoming Emoji 4 release.

Emoji 4 adds 32 new professions, (with variations for gender and skin tone), and updates 33 existing character for male and female variations.

Fixes #38113 for trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/formatting.php

    r38646 r38717  
    49494949         * @param string The emoji base URL for png images.
    49504950         */
    4951         'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2/72x72/' ),
     4951        'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.2.1/72x72/' ),
    49524952
    49534953        /**
     
    49674967         * @param string The emoji base URL for svg images.
    49684968         */
    4969         'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2/svg/' ),
     4969        'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2.2.1/svg/' ),
    49704970
    49714971        /**
     
    50795079
    50805080    /** This filter is documented in wp-includes/formatting.php */
    5081     $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2/72x72/' );
     5081    $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.2.1/72x72/' );
    50825082
    50835083    /** This filter is documented in wp-includes/formatting.php */
Note: See TracChangeset for help on using the changeset viewer.