Skip to content

Instantly share code, notes, and snippets.

@jorpdesigns
Created July 13, 2021 19:25
Show Gist options
  • Save jorpdesigns/d5166affc578e972d5803630a65bcf7e to your computer and use it in GitHub Desktop.
Save jorpdesigns/d5166affc578e972d5803630a65bcf7e to your computer and use it in GitHub Desktop.
Shortcode that returns current year
<?php
add_shortcode( 'current_year', 'current_year' );
function current_year() {
return date("Y");
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment