Make WordPress Core


Ignore:
Timestamp:
03/16/2015 10:45:29 AM (11 years ago)
Author:
pento
Message:

Emoji: Rename the email and feed filter functions to be _ prefixed, and @ignore-d in the PHPDocs.

See #31242

File:
1 edited

Legend:

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

    r31790 r31791  
    41934193 * Convert emoji in emails into static images.
    41944194 *
     4195 * @ignore
    41954196 * @since 4.2.0
    41964197 *
     
    41984199 * @return array The email data array, with emoji in the message staticized.
    41994200 */
    4200 function mail_emoji( $mail ) {
     4201function _wp_staticize_emoji_for_email( $mail ) {
    42014202        $mail['message'] = wp_staticize_emoji( $mail['message'], true );
    42024203        return $mail;
Note: See TracChangeset for help on using the changeset viewer.