Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

BtnLink

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

	// Attributes
	$atts = shortcode_atts(
		array(
			'hcclink' => '#',
			'hccclass' => '',
			'hcctitle' => 'View',
		),
		$atts,
		'btnlink'
	);

	// Return Button HTML Code
	return '<a href="' . $atts['hcclink'] . '" class="' . $atts['hccclass'] . '"><span>' . $atts['hcctitle'] . '</span></a>';

}
add_shortcode( 'btnlink', 'btnlink_shortcode' );