Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Shortcode Year

Shortcode Year [year]. Simple and basic.

// Shortcode Year [year]
function show_year() {
  $year = date('Y');
  return $year;
}
add_shortcode('year', 'show_year');