01 Apr Add Year shortcode to footer copyright notice to automatically update.
//Add to functions.php
function year_shortcode() {
$year = date('Y');
return $year;
}
add_shortcode('year', 'year_shortcode');
Thanks to CSS Tricks!
//Add to functions.php
function year_shortcode() {
$year = date('Y');
return $year;
}
add_shortcode('year', 'year_shortcode');
Thanks to CSS Tricks!