Make WordPress Core


Ignore:
Timestamp:
03/16/2015 10:45:29 AM (10 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/feed.php

    r31733 r31791  
    654654 * Convert emoji characters in a feed into static images.
    655655 *
     656 * @ignore
     657 * @since 4.2.0
     658 *
    656659 * @param string $content The content to convert.
    657  *
    658660 * @return The converted content.
    659661 */
    660 function feed_emoji( $content ) {
     662function _wp_staticize_emoji_for_feeds( $content ) {
    661663    return wp_staticize_emoji( $content, true );
    662664}
Note: See TracChangeset for help on using the changeset viewer.