Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Pink Button

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

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

}
add_shortcode( 'pink-button', 'pink_button_shortcode' );