-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathfooter.php
More file actions
27 lines (27 loc) · 1.08 KB
/
footer.php
File metadata and controls
27 lines (27 loc) · 1.08 KB
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
27
</main>
<footer>
<?php get_sidebar('newsletter'); ?>
<div class="py-footer-menu-b">
<div class="row">
<div class="large-12 columns">
<?php get_sidebar('footer'); ?>
</div>
</div>
</div>
<div class="py-copyright">
<div class="row">
<div class="large-12 columns">
<?php wp_nav_menu(array('theme_location' => 'footermenu', 'container' => false, 'menu_class' => 'py-footer-menu', 'fallback_cb' => 'py_footermenu_fallback', 'items_wrap' => '<ul class="menu simple">%3$s</ul>')); ?>
</div>
<div class="medium-12 columns text-left">
<p>© <?php echo date('Y'); ?> <?php bloginfo('name'); ?>, <?php _e('Inc. All rights reserved.', 'projectyeti'); ?></p>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
<script>(function($){$(document).foundation();})(jQuery);</script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.1.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</body>
</html>