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

See #31242



git-svn-id: https://develop.svn.wordpress.org/trunk@31791 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast
2015-03-16 10:45:29 +00:00
parent 47c69c3207
commit 2b3cfead22
3 changed files with 21 additions and 18 deletions

View File

@@ -653,10 +653,12 @@ function fetch_feed( $url ) {
/**
* Convert emoji characters in a feed into static images.
*
* @param string $content The content to convert.
* @ignore
* @since 4.2.0
*
* @param string $content The content to convert.
* @return The converted content.
*/
function feed_emoji( $content ) {
function _wp_staticize_emoji_for_feeds( $content ) {
return wp_staticize_emoji( $content, true );
}