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.

Revisions

  1. braddalton created this gist Jul 7, 2013.
    10 changes: 10 additions & 0 deletions Enqueue Script Conditionally WordPress
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    add_action( 'wp_enqueue_scripts', 'wpsites_load_javascript_conditionally' );

    function wpsites_load_javascript_conditionally() {
    if ( is_page('page-slug') ) {

    wp_enqueue_script( 'your-script' );

    }

    }