forked from wp960/Wordpress-960
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
38 lines (33 loc) · 806 Bytes
/
footer.php
File metadata and controls
38 lines (33 loc) · 806 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
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* Template for the footer of the website. Closes all tags opened in the header.php file
*
* @package WordPress-960
* @see header.php
*/
?>
</div>
<footer>
<!-- Footer Widgets -->
<aside class="grid_12 alpha omega">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer') ) : ?><?php endif; ?>
<div class="clear"></div>
</aside>
<!-- Footer Navigation -->
<div class="grid_12 alpha omega">
<?php
$options = get_option( 'wp960_theme_options' );
if ( $options['footer_navigation'] ) {
wp_nav_menu( array(
'theme_location' => 'footer',
'menu_class' => 'nav-bar',
'container' => 'nav'
) );
}
?>
</div>
</footer>
</div>
<?php wp_footer(); ?>
</body>
</html>