Home › Forums › WoodMart support forum › copyrights: year update automatically › Reply To: copyrights: year update automatically
January 3, 2019 at 6:38 pm
#99703
newsprince
Participant
Check this.
https://stackoverflow.com/questions/20370582/display-current-year-in-wordpress
You can create a function
function currentYear( $atts ){
return date(‘Y’);
}
add_shortcode( ‘year’, ‘currentYear’ );
and then use the [year] shortcode anywhere you want.
Put the code in functions.php file of child-theme or use the plugin
https://wordpress.org/plugins/code-snippets/
To add it from the backend