Skip to content

Instantly share code, notes, and snippets.

@Jehu
Created February 8, 2022 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jehu/80b8b41748f8f98522354cf5dae14f5b to your computer and use it in GitHub Desktop.
Save Jehu/80b8b41748f8f98522354cf5dae14f5b to your computer and use it in GitHub Desktop.
WordPress - Jahreszahl Shortcode
<?php
function year_shortcode () {
$year = date_i18n ('Y');
return $year;
}
add_shortcode ('year', 'year_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment