Footer.php - ar-to/WordPress-Theme GitHub Wiki
Create a <footer>
tag before the Jquery script. Then add the following template tags or functions:
- bloginfo()
- echo date()
<footer>
<div class="container">
<div class="row">
<div class="col-md-12">
<p><?php bloginfo(); //default is 'name' ?> © Copyright <?php echo date("F Y") //displays date dynamically?></p>
</div>
</div>
</div>
</footer>