You appear to be a bot. Output may be restricted
Description
Display shortcode help
Display a simple line of help to explain the shortcode Need to find out more about other shortcodes and then find a way of capturing the registration information for a shortcode it should be possible to find the plugin that implements the shortcode but we might not know the location of the function that we can call if the shortcode is a lazy shortcode.
Usage
bw_sc_help( $shortcode );
Parameters
- $shortcode
- ( string ) optional default: oik – the shortcode name
Returns
void
Source
File name: oik/libs/bobbfunc.php
Lines:
1 to 6 of 6
function bw_sc_help( $shortcode="oik" ) { oik_require_lib( "oik-sc-help" ); if ( function_exists( "bw_lazy_sc_help" ) ) { bw_lazy_sc_help( $shortcode ); } }