Created
April 18, 2013 16:27
-
-
Save fatihtoprak/5414102 to your computer and use it in GitHub Desktop.
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
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