Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. /* remove emoji js junk */
  3.  
  4. function disable_wp_emojicons() {
  5. remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
  6. remove_action( 'wp_print_styles', 'print_emoji_styles' );
  7. }
  8.  
  9. add_action( 'init', 'disable_wp_emojicons' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement