Skip to content

Instantly share code, notes, and snippets.

@lloc
Last active August 29, 2015 14:12
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 lloc/e3224aeaeb559c3f1932 to your computer and use it in GitHub Desktop.
Save lloc/e3224aeaeb559c3f1932 to your computer and use it in GitHub Desktop.
<?php
function my_enqueue_script() {
if ( is_page() ) {
wp_enqueue_script( 'page', plugins_url( '/js/page.js', __FILE__ ) );
} else {
wp_enqueue_script( 'rest', plugins_url( '/js/rest.js', __FILE__ ) );
}
}
add_action( 'wp_enqueue_scripts', 'my_enqueue_script' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment