Good afternoon,
I’d like to add a date range for the years in our website’s footer.
Is there any way to add it? I don’t know how to call the the php
<?php echo date("Y"); ?>
inside the
$copyright = do_shortcode
variable, as I’m not really a coder.
Any help you be great!
Thank you!
edit, I’d like to do 2016-(“Y”) type of thing..
Hi,
Please go to Appearance > Editor and open Footer.php file and find
$copyright = do_shortcode( avia_get_option('copyright', "© ".__('Copyright','avia_framework')." - <a href='".home_url('/')."'>".get_bloginfo('name')."</a>"));
and change it to
$copyright = do_shortcode( avia_get_option('copyright', "© ".__('Copyright 2016 -','avia_framework')." ".date('Y')." - <a href='".home_url('/')."'>".get_bloginfo('name')."</a>"));
Best regards,
Jordan Shannon