-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
20 lines (19 loc) · 957 Bytes
/
footer.php
File metadata and controls
20 lines (19 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- ******FOOTER****** -->
<footer class="footer">
<div class="container text-center">
<?php
/**
* Fires before the devbio footer text for footer customization.
*
* @since Twenty Sixteen 1.0
*/
do_action( 'devbio_credits' );
?>
<p class="copyright"><a class='profile-image' href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
<p class="copyright">Handcrafted with <i class="fa fa-heart"></i> by <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
<p class="copyright"><a href='https://facebook.com/euobasi' >Facebook</a> - <a href='https://twitter.com/ebenzunlimited/' >Twitter</a> - <a href='https://instagram.com/ebenzunlimited/' >Instagram</a></p>
</div><!--//container-->
</footer><!--//footer-->
<?php wp_footer(); ?>
</body>
</html>