forked from aspirepress/site-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
26 lines (23 loc) · 859 Bytes
/
footer.php
File metadata and controls
26 lines (23 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
</div><!-- /.row -->
<footer class="blog-footer row">
<?php //dynamic_sidebar( 'footer-copyright-text' ); ?>
<?php //if ( is_active_sidebar( 'footer-copyright-text' ) ) { dynamic_sidebar( 'footer-copyright-text' ); } ?>
<div class="footer">
<ul id="footer-menu" class=" list-inline">
<?php
wp_nav_menu([
'theme_location' => 'footer-menu',
'menu_class' => 'list-inline',
'menu_id' => 'footer-menu',
'container' => false,
]);
?>
</div>
<div class="">
<p class="copyright">Copyright © <?php echo date('Y');?> AspirePress. Theme courtesy <a href="https://akrabat.com/">Rob Allen</a>. All rights reserved.</p>
</div>
</footer>
</div><!-- /.container -->
<?php wp_footer(); ?>
</body>
</html>