You appear to be a bot. Output may be restricted
Description
Return an associative array of shortcodes and their one line descriptions (help)The array is ordered by shortcode
Usage
$array = bw_shortcode_list( $atts );
Parameters
- $atts
- ( array ) optional – attributes – currently unused
Returns
array associative array of shortcode => descriptionSource
File name: oik/shortcodes/oik-codes.phpLines:
1 to 10 of 10
function bw_shortcode_list( $atts=null ) { global $shortcode_tags; foreach ( $shortcode_tags as $shortcode => $callback ) { $schelp = _bw_lazy_sc_help( $shortcode ); $sc_list[$shortcode] = $schelp; } ksort( $sc_list ); return( $sc_list ); }View on GitHub View on Trac