Skip to content

Instantly share code, notes, and snippets.

@danielvlopes
Forked from jeffrydegrande/test.php
Created October 5, 2009 17:11
Show Gist options
  • Save danielvlopes/202252 to your computer and use it in GitHub Desktop.
Save danielvlopes/202252 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