Skip to content

Instantly share code, notes, and snippets.

@zgordon
Created March 2, 2014 17:26
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 zgordon/9310082 to your computer and use it in GitHub Desktop.
Save zgordon/9310082 to your computer and use it in GitHub Desktop.
Include JavaScript in WordPress function.php File
<?php
function my_theme_scripts() {
wp_enqueue_script( 'theme_js', get_stylesheet_directory_uri() . '/js/theme.js', array('jquery'), false, 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