Remove Emoji Changes in WordPress

,

So WordPress has some emoji detection and modifications that get made by the core WordPress install.  Here is some code that you can put into your functions.php file to disable this as it can sometimes cause issues in other browsers like Safari.

// REMOVE EMOJI ICONS
remove_action('wp_head', 'print_emoji_detection_script', 7);
remove_action('wp_print_styles', 'print_emoji_styles');

 

Skills

Posted on

July 13, 2017

Submit a Comment

Your email address will not be published. Required fields are marked *