Skip to content

Instantly share code, notes, and snippets.

@seoagentur-hamburg
Created June 25, 2017 14:41
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seoagentur-hamburg/1e949617185aea342aed828b1e14ae06 to your computer and use it in GitHub Desktop.
Save seoagentur-hamburg/1e949617185aea342aed828b1e14ae06 to your computer and use it in GitHub Desktop.
Die Emojis ausschalten
<?php
// Ab hier kopieren
//emoji aus dem header entfernen
function ah_disable_emoji_dequeue_script() {
wp_dequeue_script( 'emoji' );
}
add_action( 'wp_print_scripts', 'ah_disable_emoji_dequeue_script', 100 );
remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
remove_action( 'wp_print_styles', 'print_emoji_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment