Site icon WP Smith

How to Find Out What Shortcodes Are Active

I came across this neat little tidbit while trying to debug a shortcode to determine shortcode conflict, and I wanted to share with everyone. To find out what shortcodes are active on your site, use this simple code:
[php]global $shortcode_tags;
echo "<pre>"; print_r($shortcode_tags); echo "</pre>";
[/php]