Skip to content

Instantly share code, notes, and snippets.

@clarklab
Created November 5, 2012 21:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save clarklab/4020621 to your computer and use it in GitHub Desktop.
Save clarklab/4020621 to your computer and use it in GitHub Desktop.
WordPress conditional JS enqueue
<?php
if (is_page('Contact')) {
wp_register_script( 'contact-form', 'http://ajax.googleapis.com/contact-form.js');
wp_enqueue_script( 'contact-form' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment