You appear to be a bot. Output may be restricted
Description
Implement [bw_skype] shortcode to display the Skype contact informationSkype Online Material: the Skype buttons and widgets available for download on the Skype Website at http://www.skype.com/share/buttons/ as such may be changed from time to time by Skype in its sole discretion. Skype Buttons: http://www.skype.com/en/features/skype-buttons/create-skype-buttons/
Usage
bw_skype( $atts, $content, $tag );
Parameters
- $atts
- ( mixed ) optional –
- $content
- ( mixed ) optional –
- $tag
- ( mixed ) optional –
Returns
voidSource
File name: oik/shortcodes/oik-phone.phpLines:
1 to 13 of 13
function bw_skype( $atts=null, $content=null, $tag=null ) { $atts['index'] = bw_array_get( $atts, "index", "skype" ); $atts['prefix'] = bw_array_get( $atts, "prefix", null ); if ( !$atts['prefix'] ) { $atts['prefix'] = __( "Skype name", "oik" ); } $atts['class'] = bw_array_get( $atts, "class", "bw_skype" ); $atts['number'] = bw_array_get( $atts, "number", null ); if ( !$atts['number'] ) { $atts['number'] = bw_get_option_arr( $atts['index'], null, $atts ); } return( _bw_telephone( $atts ) ); }View on GitHub View on Trac