You appear to be a bot. Output may be restricted
Description
Syntax for [bw_button] shortcode
Usage
bw_button__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_button –
Returns
voidSource
File name: oik/shortcodes/oik-button.phpLines:
1 to 8 of 8
function bw_button__syntax( $shortcode='bw_button' ) { $syntax = array( "link" => BW_::bw_skv( "", __( "URL", "oik" ), __( "URL for the link", "oik" ) ) , "text" => BW_::bw_skv( __( "dummy", "oik" ), "", __( "text for the button", "oik" ) ) , "title" => BW_::bw_skv( __( "as text", "oik" ), "", __( "title for the tooltip", "oik" ) ) , "class" => BW_::bw_skv( "", "", __( "CSS classes for the button", "oik" ) ) ); return( $syntax ); }View on GitHub View on Trac