Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Last active August 2, 2016 08:18
Show Gist options
  • Save andreasvirkus/0b6fb8db85e7ed186c0dacb51da6b32b to your computer and use it in GitHub Desktop.
Save andreasvirkus/0b6fb8db85e7ed186c0dacb51da6b32b to your computer and use it in GitHub Desktop.
/**
* Load Enqueued Scripts in the Footer
*
* Automatically move JavaScript code to page footer, speeding up page loading time.
*/
function footer_enqueue_scripts()
{
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);
}
add_action('after_setup_theme', 'footer_enqueue_scripts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment