Skip to content

Instantly share code, notes, and snippets.

@8lane
Created December 31, 2013 13:58
Show Gist options
  • Save 8lane/8197157 to your computer and use it in GitHub Desktop.
Save 8lane/8197157 to your computer and use it in GitHub Desktop.
Remove all Wordpress JS from <head> and move to the footer.
<?php
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_footer', 'wp_print_scripts', 3);
add_action('wp_footer', 'wp_enqueue_scripts', 3);
add_action('wp_footer', 'wp_print_head_scripts', 3);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment