Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Button Shortcode

// Add Shortcode
function btn_shortcode( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'link' => 'http://eastmark.com',
			'target' => '_self',
		),
		$atts,
		'btn'
	);

	return "<a class='btn' href='".$atts["link"]."' target='".$atts["target"]."'>".$content."</a>";

}
add_shortcode( 'btn', 'btn_shortcode' );