Skip to content

Instantly share code, notes, and snippets.

@WordBits
Created August 27, 2018 17:23
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 WordBits/13f84d2cdfa04f3374ecf520b4f90531 to your computer and use it in GitHub Desktop.
Save WordBits/13f84d2cdfa04f3374ecf520b4f90531 to your computer and use it in GitHub Desktop.
Creates shortcode to use in website footer to automatically update the copyright to current year.
<?php
// Download this snippet as a plugin and more at: https://wordbits.io/snippet/current-year-copyright-shortcode/
// Created by: Tara Claeys
?>
<?php
function currentyear_shortcode() { $year = date('Y'); return $year; }
add_shortcode('currentyear', 'currentyear_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment