Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save braddalton/5944336 to your computer and use it in GitHub Desktop.

Select an option

Save braddalton/5944336 to your computer and use it in GitHub Desktop.
add_action( 'wp_enqueue_scripts', 'wpsites_load_javascript_conditionally' );
function wpsites_load_javascript_conditionally() {
if ( is_page('page-slug') ) {
wp_enqueue_script( 'your-script' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment