You appear to be a bot. Output may be restricted
Description
Implement [bw_mobile] shortcode to display the mobile (cell) number, if set
Usage
bw_mobile( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik/shortcodes/oik-phone.phpLines:
1 to 8 of 8
function bw_mobile( $atts = null ) { $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