Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Years

Calculate diff among start and end date

// Add Shortcode
function years_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'start' => 'now',
			'end' => 'now',
		), $atts )
	);

	// Code
         $init = new DateTime($start);
         $finit = new DateTime($end);
         $interval = $init -> diff($finit);
         return $interval -> format('%Y');
}
add_shortcode( 'years', 'years_shortcode' );