Widget WordPress bieżący rok
function year_shortcode() {
return date( "Y" );
}
Inquisitive Ibis
function year_shortcode() {
return date( "Y" );
}
function year_shortcode () {
$year = date_i18n ('Y');
return $year;
}
add_shortcode ('year', 'year_shortcode');