You appear to be a bot. Output may be restricted
Description
Implement [bw_tel] shortcode to display an inline telephone number, using spanNote: When using the link= parameter the versions of the shortcodes which use tag=span create better HTML than those which uses tag=div. This is because WordPress wpautop() logic can add unwanted (and unmatching) paragraph tags.
Usage
bw_tel( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik/shortcodes/oik-phone.phpLines:
1 to 4 of 4
function bw_tel( $atts=null ) { $atts['tag'] = bw_array_get( $atts, "tag", "span" ); return _bw_telephone( $atts ); }View on GitHub View on Trac