-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·46 lines (43 loc) · 1.38 KB
/
Copy pathfooter.php
File metadata and controls
executable file
·46 lines (43 loc) · 1.38 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package turing
* @since turing 1.0
*/
?>
<div id="footer">
<?php $t_options = turing_get_theme_options(); ?>
<div class="inner-container">
<nav class="footer-navigation">
<ul>
<?php
$nav_items = wp_get_nav_menu_items('Main Nav');
$nav_list = '';
foreach ( (array) $nav_items as $key => $nav_item ) {
$title = $nav_item->title;
$url = $nav_item->url;
$nav_list .= '<li><a href="'.$url.'">'.$title.'</a></li>';
}
echo $nav_list;
?>
</ul>
</nav>
<!-- <p class="copyright">Copyright 2012 Colorflow Post, Inc.</p> -->
<p class="copyright">
© <?php echo date("Y").','; echo ' '.$t_options['company_name']; ?>. All Rights Reserved.
<!-- <span class="social_icons">
<a class="vimeo" href="https://vimeo.com/colorflow">Vimeo</a>
<a class="twitter" href="https://twitter.com/colorflowpost">Twitter</a>
<a class="facebook" href="http://www.facebook.com/colorflowpost">Facebook</a>
<a class="tumblr" href="http://tumblr.colorflow.com/">Tumblr</a>
</span> -->
</p>
</div>
</div>
<?php wp_footer(); ?>
<div class="clearfix"> </div>
</body>
</html>