Jahr Shortcode

Avatar of Chris Coyier
Chris Coyier am

Für die Datei functions.php

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

Verwendung

Verwenden Sie [year] in Ihren Beiträgen.