-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfooter.php
30 lines (22 loc) · 1.09 KB
/
footer.php
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
<!--BEGIN: Footer Section-->
<footer class="footer clear-fix">
<!--BEGIN: Row-->
<div class="row">
<!--BEGIN: Footer Nav-->
<nav role="navigation">
<h1 class="access-hide">Footer Navigation</h1>
<?php wp_nav_menu(array('menu' => 'footerNav', 'menu_class' => 'nav-footer horiz-list')); // create the footerNav menu inside Appearance menus and go to town -- for more on menus see: http://templatic.com/news/wordpress-3-0-menu-management ?>
</nav>
<!--END: Footer Nav-->
<!--BEGIN: Web Design Credit ~~ Feel free to remove this, or change to your own company's info.-->
<article class="credit"><h1>Branding & Design by <a <?php if ( is_front_page() && is_home() ) : ?>rel="nofollow"<?php endif;?> href="https://condensed.io" title="branding for startups">condensed.io</a></h1></article>
<!--END: Credits-->
<p id="copyright" class="copyright"><small>© <?php echo date('Y'); ?> <?php bloginfo('name')?></small></p>
</div>
<!--END: Row-->
</footer>
<!--END: Footer Section-->
<!-- wp_footer hook for Plugins -->
<?php wp_footer(); ?>
</body>
</html>