Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

current Date Shortcode

A simple shortcode that displays the current year. Useful for adding copy right to pages or posts.

// Add Shortcode
function date_shortcode() {

	// Code
$copyRight = date('Y');

return ''. $copyRight .'';
}
add_shortcode( 'date', 'date_shortcode' );