You appear to be a bot. Output may be restricted
Description
Display the company abbreviation using an acronym tagthere is a subtle difference between the two: abbr and acronym see (for example) http://www.benmeadowcroft.com/webdev/articles/abbr-vs-acronym/
Usage
bw_acronym( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik/shortcodes/oik-acronym.phpLines:
1 to 6 of 6
function bw_acronym( $atts = NULL ) { $abbr = bw_get_option( "abbr" ); $company = bw_get_option( "company" ); _bw_acronym( $company, $abbr ); return( bw_ret()); }View on GitHub View on Trac