Skip to content

Instantly share code, notes, and snippets.

@landbryo
Last active May 24, 2018 16:15
Show Gist options
  • Save landbryo/ec98f0afdc741a8681b899177ef8a6b3 to your computer and use it in GitHub Desktop.
Save landbryo/ec98f0afdc741a8681b899177ef8a6b3 to your computer and use it in GitHub Desktop.
WordPress shortcode [copyYear] to be used in widgets and theme options.
//////////////////////////////
// COPYRIGHT YEAR SHORTCODE //
//////////////////////////////
function copyrightYear(){
return date('Y');
}
add_shortcode('copyYear', 'copyrightYear');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment