You appear to be a bot. Output may be restricted
Description
Display a table of active shortcodes
Usage
$string = bw_codes( $atts );
Parameters
- $atts
- ( array ) optional – shortcode parameters
Returns
string results of the shortcodeSource
File name: oik/shortcodes/oik-codes.phpLines:
1 to 8 of 8
function bw_codes( $atts = NULL ) { $text = "[bw_codes] is intended to show you all the active shortcodes and give you some help on how to use them. "; $text .= "If a shortcode is not listed then it could be that the plugin that provides the shortcode is not activated. "; $text .= "Click on the link to find detailed help on the shortcode and its syntax. "; e( $text ); $shortcodes = bw_list_shortcodes( $atts ); return( bw_ret()); }View on GitHub View on Trac