Skip to content

Instantly share code, notes, and snippets.

@cheh
Created June 18, 2014 11:55
Show Gist options
  • Save cheh/4f426ca863e0f001b3c3 to your computer and use it in GitHub Desktop.
Save cheh/4f426ca863e0f001b3c3 to your computer and use it in GitHub Desktop.
function custom_shortcode_scripts() {
global $post;
if( has_shortcode( $post->post_content, 'custom-shortcode') ) {
wp_enqueue_script( 'custom-script');
}
}
add_action( 'wp_enqueue_scripts', 'custom_shortcode_scripts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment