Untitled Snippet
// Add Shortcode function custom_shortcode_button( $atts , $content = null ) { // Attributes $atts = shortcode_atts( array( 'link' => '', ), $atts, 'button' ); return $stuff; } add_shortcode( 'button', 'custom_shortcode_button' );
// Add Shortcode function custom_shortcode_button( $atts , $content = null ) { // Attributes $atts = shortcode_atts( array( 'link' => '', ), $atts, 'button' ); return $stuff; } add_shortcode( 'button', 'custom_shortcode_button' );