You appear to be a bot. Output may be restricted
Description
Display the shortcode, syntax and linkNote: This used to display a separate link to the oik shortcode server help. Now this is incorporated into the syntax help, along with a link to the oik shortcode parameter
Usage
bw_get_shortcode_syntax_link( $shortcode, $callback );
Parameters
- $shortcode
- ( string ) required – the shortcode tag
- $callback
- ( string ) required – the registered callback for the shortcode
Returns
voidSource
File name: oik/shortcodes/oik-codes.phpLines:
1 to 14 of 14
function bw_get_shortcode_syntax_link( $shortcode, $callback ) { stag( "tr" ); stag( "td" ); bw_code_link( $shortcode ); do_action( "bw_sc_help", $shortcode ); etag( "td" ); stag( "td" ); do_action( "bw_sc_syntax", $shortcode ); etag( "td" ); stag( "td" ); e( bw_get_shortcode_expands_in_titles( $shortcode ) ); etag( "td" ); etag( "tr" ); }View on GitHub View on Trac