// https://divimundo.com/en/blog/copyright-year-wordpress-footer/
//Allow shortcodes in widgets
add_filter('widget_text', 'do_shortcode');
function year_shorty()
{
$year = date_i18n('Y');
return $year;
};
add_shortcode('year', 'year_shorty');