Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

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' );