You appear to be a bot. Output may be restricted
Description
Display shortcode helpDisplay 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
voidSource
File name: oik/libs/bobbfunc.phpLines:
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 ); } }View on GitHub View on Trac