You appear to be a bot. Output may be restricted
Description
Inline [bw_mob] shortcode to display an inline mobile number, using span
Usage
bw_mob( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik/shortcodes/oik-phone.phpLines:
1 to 9 of 9
function bw_mob( $atts=null ) { $atts['tag'] = bw_array_get( $atts, "tag", "span" ); $atts['index'] = bw_array_get( $atts, "index", "mobile" ); $atts['prefix'] = bw_array_get( $atts, "prefix", null ); if ( !$atts['prefix'] ) { $atts['prefix'] = __( "Mobile", "oik" ); } return _bw_telephone( $atts ); }View on GitHub View on Trac