Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Attribution Test Shortcode

Test for technical Assessment

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'year' => '2016',
			'name' => 'Widget Co',
			'link' => 'https://widgetco.com',
		),
		$atts
	);

	'<span>©$atts["year"]-2019 <a href="$atts['link']">$atts["name"]</a> - All Rights Reserved</span>'

}
add_shortcode( 'attribution', 'custom_shortcode' );