You appear to be a bot. Output may be restricted
Description
Implement "bw_sc_shortcake_compatible" for oikFilter out the shortcodes that aren't compatible with shortcake. Note: In this first version of oik we'll handle shortcodes for other plugins as well.
Usage
$array = bw_sc_shortcake_compatible( $sclist );
Parameters
- $sclist
- ( array ) required – array of shortcodes
Returns
array updated shortcode listTO DO
Complete the list and/or implement a proper solutionSource
File name: oik/shortcodes/oik-codes.phpLines:
1 to 11 of 11
function bw_sc_shortcake_compatible( $sclist ) { bw_trace2(); bw_backtrace(); unset( $sclist['bw_code']); // unset( $sclist['bw_codes']); unset( $sclist['bw_cycle']); unset( $sclist['bw_geshi']); unset( $sclist['codes']); //gob(); return( $sclist ); }View on GitHub View on Trac