diff --git a/includes/shortcodes/shortcodes.php b/includes/shortcodes/shortcodes.php index c6c3e15..5f6adcb 100644 --- a/includes/shortcodes/shortcodes.php +++ b/includes/shortcodes/shortcodes.php @@ -53,10 +53,11 @@ add_shortcode( 'col', 'trestle_column' ); */ function trestle_button( $atts, $content = null ) { extract( shortcode_atts( array( - 'href' => '#', + 'href' => '#', + 'title' => '', 'class' => '', ), $atts ) ); - return '' . do_shortcode( $content ) . ''; + return '' . do_shortcode( $content ) . ''; } add_shortcode( 'button', 'trestle_button' );