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