Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created December 28, 2015 02:35
Show Gist options
  • Select an option

  • Save nathaningram/6e86ea4235feb1371592 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/6e86ea4235feb1371592 to your computer and use it in GitHub Desktop.
// Display Current Year
function year_shortcode() {
$year = date('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