Organizing shortcodes. How to display all of them and their attributes?
1. My shortcodes I’ve developed multiple shortcodes for my own theme, I’m loading them in functions.php like this require_once (MY_URL . ‘/bartag_shortcode.php’). Here’s an exemplary bartag shortcode from WordPress Codex: function bartag_func( $atts ) { extract( shortcode_atts( array( 'foo' => 'something', 'bar' => 'something else', ), $atts ) ); return "foo = {$foo}"; } add_shortcode( … Read more