Guest User

Untitled

a guest
Nov 25th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. function disable_wp_emojicons() {
  2.  
  3. // all actions related to emojis
  4. remove_action( 'admin_print_styles', 'print_emoji_styles' );
  5. remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
  6. remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
  7. remove_action( 'wp_print_styles', 'print_emoji_styles' );
  8. remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' );
  9. remove_filter( 'the_content_feed', 'wp_staticize_emoji' );
  10. remove_filter( 'comment_text_rss', 'wp_staticize_emoji' );
  11.  
  12. // filter to remove TinyMCE emojis
  13. add_filter( 'tiny_mce_plugins', 'disable_emojicons_tinymce' );
  14. }
  15. add_action( 'init', 'disable_wp_emojicons' );
Add Comment
Please, Sign In to add comment