Skip to content

Instantly share code, notes, and snippets.

@topher1kenobe
Created July 15, 2014 20:37
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 topher1kenobe/895865806ad55820934d to your computer and use it in GitHub Desktop.
Save topher1kenobe/895865806ad55820934d to your computer and use it in GitHub Desktop.
easy enqueue
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