Last active
December 12, 2015 00:59
-
-
Save bentedder/4688084 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Enqueue a custom javascript file in functions.php */ | |
add_action( 'wp_enqueue_scripts', 'bt_add_scripts' ); | |
function bt_add_scripts() { | |
wp_register_script( 'mystuff', get_bloginfo('stylesheet_directory').'/myscripts.js' ); | |
wp_enqueue_script( 'mystuff' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment