You appear to be a bot. Output may be restricted
Description
Implement [bw_fax] shortcode to display the fax number, if set
Usage
bw_fax( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik/shortcodes/oik-phone.phpLines:
1 to 8 of 8
function bw_fax( $atts = null ) { $atts['index'] = bw_array_get( $atts, "index", "fax" ); $atts['prefix'] = bw_array_get( $atts, "prefix", null ); if ( !$atts['prefix'] ) { $atts['prefix'] = __( "Fax", "oik" ); } return( _bw_telephone( $atts ) ); }View on GitHub View on Trac