Skip to content

Instantly share code, notes, and snippets.

@jeffrydegrande
Created October 5, 2009 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jeffrydegrande/202251 to your computer and use it in GitHub Desktop.
Save jeffrydegrande/202251 to your computer and use it in GitHub Desktop.
<?php
function include_my_javascripts() {
if (is_page('video')) {
wp_enqueue_script('video.js')
} else (if is_page('contato')) {
wp_enqueue_script('validation.js')
}
}
// make sure you have wp_head(); in <head></head>
add_action('wp_head', 'include_my_javascripts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment