Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Current Year Shortcode

// Add Shortcode
function currentyear_shortcode() {

	// Code
return date('Y');
}
add_shortcode( 'currentyear', 'currentyear_shortcode' );