You appear to be a bot. Output may be restricted
Description
Syntax hook for the bw_geshi shortcodeAdded "content" for shortcode UI Removed "content" for shortcode UI (shortcake) – since it now uses "inner_content" Added "none" language for no GeSHi processing
Usage
bw_geshi__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_geshi –
Returns
voidSource
File name: oik-css/shortcodes/oik-geshi.phpLines:
1 to 6 of 6
function bw_geshi__syntax( $shortcode="bw_geshi" ) { $syntax = array( "lang" => BW_::bw_skv( null, "html|css|javascript|jquery|php|none|mysql", __( "Programming language", "oik-css" ) ) , "text" => BW_::bw_skv( null, "<i>" . __( "text", "oik-css" ) . "</i>", __( "Descriptive text to display", "oik-css" ) ) ); return( $syntax ); }View on GitHub View on Trac