You appear to be a bot. Output may be restricted
Description
Implement "no_texturize_shortcodes" for oik-css shortcodes
Usage
$array = bw_no_texturize_shortcodes( $shortcodes );
Parameters
- $shortcodes
- ( array ) required – array of shortcodes that won't be texturized
Returns
array $shortcodes – updated array with our shortcodes addedSource
File name: oik-css/oik-css.phpLines:
1 to 7 of 7
function bw_no_texturize_shortcodes( $shortcodes ) { // bw_backtrace(); $shortcodes[] = "bw_css"; $shortcodes[] = "bw_geshi"; //$shortcodes[] = "bw_related"; return( $shortcodes ); }View on GitHub View on Trac