You appear to be a bot. Output may be restricted
Description
Implement "oik_loaded" action for oik-cssRegardless of whether or not there are any shortcodes we apply our logic for filtering 'the_content' The option field is a checkbox that is ticked when the wpautop() processing is disabled So we need to negate the value when calling bw_better_autop(). Note: Part of the better autop logic applies regardless of the settting for bw_autop
Usage
oik_css_oik_loaded();
Parameters
Returns
voidSource
File name: oik-css/oik-css.phpLines:
1 to 5 of 5
function oik_css_oik_loaded() { $bw_disable_autop = bw_get_option( "bw_autop", "bw_css_options" ); $bw_autop = !$bw_disable_autop; bw_better_autop( $bw_autop ); }View on GitHub View on Trac