Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

button link

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

	// Attributes
	$atts = shortcode_atts(
		array(
			'href' => '',
		),
		$atts
	);

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

}
add_shortcode( 'button_link', 'button_link' );