Skip to content

Instantly share code, notes, and snippets.

@tradesouthwest
Created November 17, 2017 18:57
Show Gist options
  • Save tradesouthwest/bb22f3fce0681e378ae9f2a62a3e9551 to your computer and use it in GitHub Desktop.
Save tradesouthwest/bb22f3fce0681e378ae9f2a62a3e9551 to your computer and use it in GitHub Desktop.
Disable wp 4.9 emojicons function
function my_disable_wp_emojicons() {
// all actions related to emojis
remove_action( 'admin_print_styles', 'print_emoji_styles' );
remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
remove_action( 'wp_print_styles', 'print_emoji_styles' );
remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' );
remove_filter( 'the_content_feed', 'wp_staticize_emoji' );
remove_filter( 'comment_text_rss', 'wp_staticize_emoji' );
// filter to remove TinyMCE emojis
add_filter( 'tiny_mce_plugins', 'my_disable_emojicons_tinymce' );
}
add_action( 'init', 'my_disable_wp_emojicons' );
function my_disable_emojicons_tinymce( $plugins ) {
if ( is_array( $plugins ) ) {
return array_diff( $plugins, array( 'wpemoji' ) );
} else {
return array();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment