Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

minorbutton

// Add Shortcode
function min_butt_shortcode( $atts ) {

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

	// Return minorbutton HTML code
	return '<h4 class="minor-button" onclick="location.href='https://aida.up.krakow.pl';">' . $atts['tekst'] . '</h4>';

}
add_shortcode( 'minbutton', 'min_butt_shortcode' );