Skip to content

Instantly share code, notes, and snippets.

@hereswhatidid
Created August 14, 2013 19:56
Show Gist options
  • Save hereswhatidid/6234943 to your computer and use it in GitHub Desktop.
Save hereswhatidid/6234943 to your computer and use it in GitHub Desktop.
Detect shortcode use and enqueue scripts accordingly
<?php
function detect_video_shortcode() {
global $post;
if ( has_shortcode( $post->post_content, 'video') ) {
wp_enqueue_script( 'video-player-specific-script');
}
}
add_action( 'wp_head', 'detect_video_shortcode');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment