Skip to content

Instantly share code, notes, and snippets.

@fatihtoprak
Created April 18, 2013 16:27
Show Gist options
  • Save fatihtoprak/5414102 to your computer and use it in GitHub Desktop.
Save fatihtoprak/5414102 to your computer and use it in GitHub Desktop.
add_action( 'wp_enqueue_scripts', 'wptuts_enqueue_video_js' );
function wptuts_enqueue_video_js() {
if ( is_page_template( 'page-cats.php' ) )
wp_enqueue_script( 'video_js', get_template_directory_uri() . '/js/video.js', array( 'jquery' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment