Hi,
To display dynamic copyright year in footer section
Go to Appearance -> Editor -> footer.php
at line no. 218, you will find the code:
<div class="copyright-txt"><?php if( of_get_option('copytext',true) != ''){ echo of_get_option('copytext',true); }; ?></div>
Now replace this code with the below code
<div class="copyright-txt">Copyright © <?php echo date('Y'); ?>. All rights reserved</div>
Regards
Grace Themes