You appear to be a bot. Output may be restricted
Description
Format the shortcode syntax for returning in HTML
Usage
bw_form_sc_syntax( $syntax, $shortcode );
Parameters
- $syntax
- ( array ) required – array of key => shortcode key values
- $shortcode
- ( string ) required – the shortcode
Returns
voidTO DO
create links to the oik shortcode parameter help for the specific shortcode and parameter nameSource
File name: oik/libs/oik-sc-help.phpLines:
1 to 17 of 17
function bw_form_sc_syntax( $syntax, $shortcode ) { if ( is_array( $syntax ) && count( $syntax ) ) { foreach ( $syntax as $key => $value ) { BW_::br(); span( "key" ); //e( $key ); e( bw_form_sc_parm_help( $key, $shortcode ) ); epan(); e( "=" ); span( "value"); e( '"' ); e( bw_format_skv( $value )); e( '"' ); epan(); } } }View on GitHub View on Trac