Skip to content

Instantly share code, notes, and snippets.

@Balachandark
Created October 18, 2019 04:04
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 Balachandark/9b9eda63387e94e3b1c7b8c8377bb0d2 to your computer and use it in GitHub Desktop.
Save Balachandark/9b9eda63387e94e3b1c7b8c8377bb0d2 to your computer and use it in GitHub Desktop.
Creating a Shortcode for current year
//Display current year
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