Skip to content

Instantly share code, notes, and snippets.

@amandaol
Created December 10, 2013 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amandaol/7900764 to your computer and use it in GitHub Desktop.
Save amandaol/7900764 to your computer and use it in GitHub Desktop.
Move all JS to bottom of page, in Wordpress
// in functions.php, this moves all scripts to bottom of page
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', 5);
add_action('wp_footer', 'wp_enqueue_scripts', 5);
add_action('wp_footer', 'wp_print_head_scripts', 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment