Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

masterbutton

// Add Shortcode
function masterb_shortcode( $atts ) {

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

	return '<h4><a class="master-button" href="' . $atts['url'] . '">' . $atts['tekst'] . '</a></h4>';

}
add_shortcode( 'masterbutton', 'masterb_shortcode' );