You appear to be a bot. Output may be restricted
Description
Syntax for [bw_qrcode] shortcode
Usage
bw_qrcode__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_qrcode –
Returns
voidSource
File name: oik/shortcodes/oik-qrcode.phpLines:
1 to 8 of 8
function bw_qrcode__syntax( $shortcode="bw_qrcode" ) { $syntax = array( "link" => BW_::bw_skv( null, "<i>" . __( "URL", "oik" ) . "</i>", __( "Link URL for QR code image", "oik" ) ) , "text" => BW_::bw_skv( bw_get_option( "company" ), "<i>" . __( "string", "oik" ) . "</i>", __( "from oik options - company", "oik" ) ) , "width" => BW_::bw_skv( null, "<i>" . __( "width", "oik" ) . "</i>", __( "width of QR code image, if required", "oik" ) ) , "height" => BW_::bw_skv( null, "<i>" . __( "height", "oik" ) . "</i>", __( "height of QR code image, if required", "oik" ) ) ); return( $syntax ); }View on GitHub View on Trac