You appear to be a bot. Output may be restricted
Description
Implement "oik_loaded" action for oik-rwdDetermine if class interception should be performed for oik-rwd If so, then define our implementation of the "oik_shortcode_atts" action hook Note: If the option is not set we can use [bw_rwd] with no parameters to enable it at a later stage
Usage
oik_rwd_init();
Parameters
Returns
voidSource
File name: oik-rwd/oik-rwd.phpLines:
1 to 7 of 7
function oik_rwd_init() { $class_intercept = bw_get_option( "class_intercept", "bw_rwd" ); if ( $class_intercept ) { add_action( "oik_shortcode_atts", "oik_rwd_shortcode_atts", 10, 3 ); } }View on GitHub