Created
July 15, 2014 20:37
-
-
Save topher1kenobe/895865806ad55820934d to your computer and use it in GitHub Desktop.
easy enqueue
This file contains hidden or 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
function bg_video_scripts() { | |
wp_enqueue_script( 'bg-backgrounds', get_stylesheet_directory_uri() . '/assets/jquery.videoBG.js', array( 'jquery' ) ); | |
wp_enqueue_script( 'bg-backgrounds-actuator', get_stylesheet_directory_uri() . '/assets/script.js', array( 'jquery' ) ); | |
} | |
add_action( 'wp_enqueue_scripts', 'bg_video_scripts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment