Home › Forums › WoodMart support forum › Footer Copyright › Reply To: Footer Copyright
December 31, 2019 at 12:59 pm
#165745
Aizaz Imtiaz Awan
Keymaster
Hello,
If you want to add dynamic year in your footer, you can use the below code in function.php :
function year_shortcode() {
$year = date('Y');
return $year;
}
add_shortcode('year', 'year_shortcode');
After placing the above code you have to use this short code “[year]” inside “Copyrights text” area, under theme settings >> Footer.
Screenshot for clarification: https://jmp.sh/sUKHtFb
I have tested this code on my test site and it works just perfectly fine on my test site.
Best Regards.