You appear to be a bot. Output may be restricted
Description
Display a cite tag unaffected by wpautop
Usage
bw_cite( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik/shortcodes/oik-cite.phpLines:
1 to 6 of 6
function bw_cite( $atts = NULL ) { $text = bw_array_get( $atts, "text", NULL ); $class = bw_array_get( $atts, "class", NULL ); _bw_cite( $text, $class ); return( bw_ret()); }View on GitHub View on Trac