Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Button

// Add Shortcode
function ajh_button( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'color' => 'blue',
			'link' => '/',
			'text' => 'Read More',
		),
		$atts,
		'button'
	);

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

}
add_shortcode( 'button', 'ajh_button' );