Skip to content

Instantly share code, notes, and snippets.

@gofishwbeeler
Last active April 2, 2019 20:11
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 gofishwbeeler/632a1aed12aae371d6b81bdfab39e68d to your computer and use it in GitHub Desktop.
Save gofishwbeeler/632a1aed12aae371d6b81bdfab39e68d to your computer and use it in GitHub Desktop.
Loads all your Javascript files in Wordpress
function gfd_theme_scripts() {
wp_enqueue_script( 'all-my-scripts', get_template_directory_uri() . '/js/all.js', array(), '1.0.0', true );
}
add_action( 'wp_print_scripts', 'gfd_theme_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment