How to get total number of shortcodes in the wordpress application?
Create a new page in WordPress theme and use below code : <?php global $shortcode_tags; echo ‘<pre>’; print_r($shortcode_tags); echo ‘</pre>’; ?> For details see link and another post may helps! For specific to your requirements use below code in functions.php then use shortcode [all_shortcodes] in your page or sidebar to list shortcodes: add_shortcode(‘all_shortcodes’, ‘all_shortcodes_display’); function … Read more