Skip to content

Instantly share code, notes, and snippets.

@ehoanshelt
Created June 3, 2014 22:44
Show Gist options
  • Save ehoanshelt/866eb7bf23ed6fb55028 to your computer and use it in GitHub Desktop.
Save ehoanshelt/866eb7bf23ed6fb55028 to your computer and use it in GitHub Desktop.
// change get_template_directory_uri() . '/js/theme.js' to your real path
function my_custom_js(){
wp_enqueue_script( 'theme-js', get_template_directory_uri() . '/js/theme.js', array( 'jquery' ) );
}
add_action( 'wp_enqueue_scripts', 'my_custom_js' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment