You appear to be a bot. Output may be restricted
Description
Returns the help for a shortcodeReturns the default help for a shortcode if not provided by the "shortcode__help" function
Usage
$string = _sc__help( $shortcode );
Parameters
- $shortcode
- ( string ) optional default: bw_code –
Returns
string translated shortcode helpSource
File name: oik/libs/oik-sc-help.phpLines:
1 to 6 of 6
function _sc__help( $shortcode="bw_code" ) { $default_help = array(); $default_help = apply_filters( "_sc__help", $default_help, $shortcode ); $help = bw_array_get( $default_help, $shortcode, __( "?", null ) ); return $help ; }View on GitHub View on Trac