You appear to be a bot. Output may be restricted
Description
Implement "oik_shortcode_atts" filter for oik-rwdThe oik-rwd plugin looks for the class= parameter. If found it may generate dynamic class definitions even when the [bw_rwd] shortcode is not present.
Usage
oik_rwd_shortcode_atts( $atts, $content, $tag );
Parameters
- $atts
- ( array ) required – shortcode parameters
- $content
- ( string ) required – may be null
- $tag
- ( string ) required – the name of the shortcode
Returns
voidSource
File name: oik-rwd/oik-rwd.phpLines:
1 to 8 of 8
function oik_rwd_shortcode_atts( $atts, $content, $tag ) { $class = bw_array_get( $atts, "class", null ); if ( $class ) { oik_rwd_oik_class_intercept( $class ); } return( $atts ); }View on GitHub