You appear to be a bot. Output may be restricted
Description
Syntax for [bw_mobile] shortcode
Usage
bw_mobile__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_mobile –
Returns
voidSource
File name: oik/shortcodes/oik-phone.phpLines:
1 to 8 of 8
function bw_mobile__syntax( $shortcode="bw_mobile" ) { $syntax = _sc_telephone(); $syntax_mobile = array( "prefix" => BW_::bw_skv( __( "Mobile", "oik" ), "<i>" . __( "string", "oik" ) . "</i>", __( "Prefix string", "oik" ) ) ); $syntax_after = array( "index" => BW_::bw_skv( "mobile", "<i>" . __( "field", "oik" ) . "</i>", __( "oik options field to use", "oik" ) ) ); $syntax_mobile += $syntax; $syntax_mobile += $syntax_after; return( $syntax_mobile ); }View on GitHub View on Trac