3
84
function dynamic_year_shortcode() { return date('Y'); } add_shortcode('year', 'dynamic_year_shortcode');
function year_shortcode () { $year = date_i18n ('Y'); return $year; } add_shortcode ('year', 'year_shortcode');