Created
August 27, 2018 17:23
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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