You appear to be a bot. Output may be restricted
Description
Implement the [oik] shortcodeFormat's OIK – in lower case? – as an abbreviation for "OIK Information Kit" Note: bw_oik() is needed here since it's used in the oik admin pages
Usage
$string = bw_oik( $atts );
Parameters
- $atts
- ( array ) optional – shortcode parameters
Returns
string the generated HTMLSource
File name: oik/includes/bobbcomp.phpLines:
1 to 10 of 10
function bw_oik( $atts=null ) { $class = bw_array_get( $atts, "class", "bw_oik" ); $bw = nullretstag( "span", $class ); $bw .= retstag( "abbr", null, null, kv( "title", __( "OIK Information Kit", "oik" ) ) ); $bw .= "oik"; $bw .= retetag( "abbr" ); $bw .= nullretetag( "span", $class ); //bw_trace2( $bw, "bw" ); return( $bw ); }View on GitHub View on Trac