Skip to content

Instantly share code, notes, and snippets.

@seoagentur-hamburg
Last active May 3, 2017 11:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seoagentur-hamburg/7136266 to your computer and use it in GitHub Desktop.
Save seoagentur-hamburg/7136266 to your computer and use it in GitHub Desktop.
Verfrachtet alles JavaScript in den Footer von WordPress.
<?php
function evolution_clean_head() {
remove_action('wp_head', 'wp_print_scripts');
remove_action('wp_head', 'wp_print_head_scripts', 9);
remove_action('wp_head', 'wp_enqueue_scripts', 1);
}
add_action( 'wp_enqueue_scripts', 'evolution_clean_head' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment