Automatically generated list of your shortcodes in edit window
To generarte a list of all shortcodes used in the theme or plugins while editing the post or page – just add the following code to functions.php:
add_action('media_buttons','add_sc_select',11); function add_sc_select(){ global $shortcode_tags; /* ------------------------------------- */ /* enter names of shortcode to exclude bellow */ /* ------------------------------------- */ $exclude = array("wp_caption", "embed"); echo ' <select id="sc_select"><option>Shortcode</option>'; foreach ($shortcode_tags as $key => $val){ if(!in_array($key,$exclude)){ $shortcodes_list .= '<option value="['.$key.'][/'.$key.']">'.$key.'</option>'; } } echo $shortcodes_list; echo '</select>'; } add_action('admin_head', 'button_js'); function button_js() { echo '<script type="text/javascript"> jQuery(document).ready(function(){ jQuery("#sc_select").change(function() { send_to_editor(jQuery("#sc_select :selected").val()); return false; }); }); </script>'; }
- WordPress Security – Why Updates and Security Measures are Crucial? - 19 March 2023
- WordCamp Poland 2023 Gliwice – WordPress user conference - 28 February 2023
- How do I restore a previous version of WordPress when an update has failed? - 9 January 2023
Leave a Reply
Want to join the discussion?Feel free to contribute!