-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
59 lines (53 loc) · 3.25 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* The template for displaying the footer
*
* Contains footer content and the closing of the #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Twelve
* @since Twenty Twelve 1.0
*/
?>
</section>
<footer class="footer">
<div class="column first">
<h5>The United Methodist Credit Union</h5>
<?php print do_shortcode( '[snippet slug="footer-address" /]' ); ?>
</div>
<div class="column">
<h5><?php print get_menu_name_by_location( 'footer-one' ); ?></h5>
<?php wp_nav_menu( array( 'theme_location' => 'footer-one', 'menu_class' => 'nav-menu' ) ); ?>
<h5 class="pad"><?php print get_menu_name_by_location( 'footer-three' ); ?></h5>
<?php wp_nav_menu( array( 'theme_location' => 'footer-three', 'menu_class' => 'nav-menu' ) ); ?>
</div>
<div class="column small">
<h5><?php print get_menu_name_by_location( 'footer-two' ); ?></h5>
<?php wp_nav_menu( array( 'theme_location' => 'footer-two', 'menu_class' => 'nav-menu' ) ); ?>
<h5 class="pad"><?php print get_menu_name_by_location( 'footer-five' ); ?></h5>
<?php wp_nav_menu( array( 'theme_location' => 'footer-five', 'menu_class' => 'nav-menu' ) ); ?>
</div>
<div class="column last">
<h5><?php print get_menu_name_by_location( 'footer-four' ); ?></h5>
<?php wp_nav_menu( array( 'theme_location' => 'footer-four', 'menu_class' => 'nav-menu' ) ); ?>
</div>
</footer><!-- #colophon -->
<div class="colophon">
<div class="column">
<a href="https://www.ncua.gov/support-services/share-insurance-fund" target="_blank"><img src="<?php bloginfo( 'template_url' ); ?>/img/logo-ncua.png" alt="Insured by the NCUA" class="ncua"></a>Your savings are federally insured to at least $250,000 and backed by the full faith and credit of the United States government.
</div>
<div class="column">
<img src="<?php bloginfo( 'template_url' ); ?>/img/logo-equal-housing.png" alt="Equal Housing Lender Logo">Equal Housing Lender - We do business in accordance with the Federal Fair Housing Law and the Equal Housing Opportunity Act.
</div>
<div class="column links">
<a href="https://www.facebook.com/TUMCreditUnion/" target="_blank" class="alignright"><img src="<?php bloginfo( 'template_url' ); ?>/img/social-facebook.png" class="alignright" alt="Visit us on Facebook."></a>
<a href="https://www.linkedin.com/company/tumcu/" target="_blank" class="alignright"><img src="<?php bloginfo( 'template_url' ); ?>/img/social-linkedin.png" class="alignright" alt="Visit us on Facebook."></a>
<a href="https://twitter.com/TUMCreditUnion" target="_blank" class="alignright"><img src="<?php bloginfo( 'template_url' ); ?>/img/social-twitter.png" class="alignright" alt="Visit us on Facebook."></a>
<?php wp_nav_menu( array( 'theme_location' => 'footer-notices', 'menu_class' => 'nav-menu' ) ); ?>
</div>
<div class="disclaimer">Links to other websites have been provided solely as a member convenience. The credit union is unable to control the content of these sites and assumes no liability for the content, accuracy, or availability. Be advised that our privacy policies do not apply to linked websites, and the viewer should consult the privacy disclosure on that site for further information.</div>
</div>
</div><!-- #container -->
<?php wp_footer(); ?>
</body>
</html>