|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
function check_for_shortcode($posts) { if ( empty($posts) ) return $posts; $flag = false; foreach ($posts as $post) { if ( stripos($post->post_content, '[YOUR_SHORTCODE_HERE') ) $flag = true; break; } if ($flag){ //add scripts and styles here eg: //wp_enqueue_script //wp_enqueue_style } return $posts; } add_action('the_posts', 'check_for_shortcode'); |
Tagged with: Return Posts • Scripts • Stylesheet
Filed under: wordpress
Like this post? Subscribe to my RSS feed and get loads more!




Leave a Reply