You appear to be a bot. Output may be restricted
Description
Syntax hook for [bw_logo] shortcode
Usage
bw_logo__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_logo –
Returns
voidSource
File name: oik/shortcodes/oik-logo.phpLines:
1 to 8 of 8
function bw_logo__syntax( $shortcode="bw_logo" ) { $syntax = array( "link" => BW_::bw_skv( "", ".|<i>" . __( "URL", "oik" ) . "</i>", __( "Link when clicked", "oik" ) ) , "text" => BW_::bw_skv( "", "<i>" . __( "company", "oik" ) . "</i>", __( "Text for tooltip", "oik" ) ) , "width" => BW_::bw_skv( "", "<i>" . __( "width", "oik" ) . "</i>", __( "Width in pixels", "oik" ) ) , "height" => BW_::bw_skv( "", "<i>" . __( "height", "oik" ) . "</i>", __( "Height in pixels", "oik" ) ) ); return( $syntax ); }View on GitHub View on Trac