Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Year

Echos PHP date function for the Year

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

	echo date('Y');

}
add_shortcode( 'year', 'year_shortcode' );