Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 8, 2021 15:07
Show Gist options
  • Save wpmu-authors/a079c7cd9663a1a789b0a17fca8fb458 to your computer and use it in GitHub Desktop.
Save wpmu-authors/a079c7cd9663a1a789b0a17fca8fb458 to your computer and use it in GitHub Desktop.
enqueue-theme.php
function my_theme_scripts() {
wp_enqueue_script( 'my-great-script', get_template_directory_uri() . '/js/my-great-script.js', array( 'jquery' ), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'my_theme_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment