Last active
March 23, 2021 01:06
-
-
Save guydumais/cba388bdb04dc9fe73e4087a21258cd1 to your computer and use it in GitHub Desktop.
WordPress / Désactiver les emojis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Supprimer toutes les actions et filtres Emojis dans WordPress. | |
* | |
* @author Guy Dumais. | |
* @link https://guydumais.digital/fr/blog/comment-desactiver-les-emojis-dans-wordpress/ | |
*/ | |
add_action( 'init', $af = function() { | |
// Supprimer toutes les actions emoji. | |
remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); | |
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); | |
remove_action( 'embed_head', 'print_emoji_detection_script' ); | |
remove_action( 'wp_print_styles', 'print_emoji_styles' ); | |
remove_action( 'admin_print_styles', 'print_emoji_styles' ); | |
// Supprimer tous les filtres emoji. | |
remove_filter( 'the_content_feed', 'wp_staticize_emoji' ); | |
remove_filter( 'comment_text_rss', 'wp_staticize_emoji' ); | |
remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' ); | |
// Supprimer les emojis dans l'éditeur tinymce. | |
add_filter( 'tiny_mce_plugins', $af2 = static function( $plugins ) { | |
if ( is_array( $plugins ) ) { | |
return array_diff( $plugins, array( 'wpemoji' ) ); | |
} else { | |
return array(); | |
} | |
} ); | |
unset( $af2 ); | |
} ); | |
unset( $af ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment