wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_encode_emoji › WordPress Function

Seit4.2.0
Veraltetn/v
wp_encode_emoji ( $content )
Parameter:
  • (string) $content The content to encode.
    Erforderlich: Ja
Gibt zurück:
  • (string) The encoded content.
Definiert in:
Codex:

Converts emoji characters to their equivalent HTML entity.

This allows us to store emoji in a DB using the utf8 character set.


Quellcode

function wp_encode_emoji( $content ) {
	$emoji = _wp_emoji_list( 'partials' );

	foreach ( $emoji as $emojum ) {
		$emoji_char = html_entity_decode( $emojum );
		if ( str_contains( $content, $emoji_char ) ) {
			$content = preg_replace( "/$emoji_char/", $emojum, $content );
		}
	}

	return $content;
}