diff --git a/includes/shortcodes/shortcodes.php b/includes/shortcodes/shortcodes.php index 3463e3f..b8ceddb 100644 --- a/includes/shortcodes/shortcodes.php +++ b/includes/shortcodes/shortcodes.php @@ -45,22 +45,6 @@ function trestle_column( $atts, $content = null ) { } add_shortcode( 'col', 'trestle_column' ); -/** - * Buttons - * - * Example: - * [button href="url" class="class"]Text[/button] - */ -function trestle_button( $atts, $content = null ) { - extract( shortcode_atts( array( - 'href' => '#', - 'title' => '', - 'class' => '', - ), $atts ) ); - return '' . do_shortcode( $content ) . ''; -} -add_shortcode( 'button', 'trestle_button' ); - /** * Button *