You appear to be a bot. Output may be restricted
Description
Create a "button" style link[bw_button link="" text="" title="" class="" ] bw_button_shortcodes() calls art_button() art_button includes redundant classes for Artisteer 2.x and 3
Usage
bw_button_shortcodes( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik/shortcodes/oik-button.phpLines:
1 to 9 of 9
function bw_button_shortcodes( $atts=NULL ) { $link = bw_array_get( $atts, 'link', NULL ); $text = bw_array_get( $atts, 'text', __( "dummy", "oik" ) ); $title = bw_array_get( $atts, 'title', $text ); $class = bw_array_get( $atts, 'class', NULL ); //bw_trace( $atts, __FUNCTION__, __LINE__, __FILE__, "atts" ); art_button( $link, $text, $title, $class ); return( bw_ret()); }View on GitHub View on Trac