-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·47 lines (42 loc) · 1.73 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
<?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 twenty first">
<?php print apply_filters( 'the_content', do_shortcode('[snippet slug="footer-1" /]')) ?>
</div>
<div class="column twenty">
<?php print apply_filters( 'the_content', do_shortcode('[snippet slug="footer-2" /]')) ?>
</div>
<div class="column thirty">
<?php print apply_filters( 'the_content', do_shortcode('[snippet slug="footer-3" /]')) ?>
</div>
<div class="column thirty last">
<?php print apply_filters( 'the_content', do_shortcode('[snippet slug="footer-4" /]')) ?>
</div>
<a href="https://www.facebook.com/cuttingedgefcu/" target="_blank"><img src="<?php bloginfo( 'template_url' ); ?>/img/social-facebook.png" class="social-facebook" alt="Go to our Facebook Page"></a>
</footer><!-- #colophon -->
<div class="colophon">
<div class="third">
<img src="<?php bloginfo( 'template_url' ); ?>/img/logo-ncua.png" class="alignleft" alt="NCUA Logo">This credit union is federally insured by the National Credit Union Administration
</div>
<div class="third">
<img src="<?php bloginfo( 'template_url' ); ?>/img/logo-equal-housing.png" class="alignleft" alt="Equal Housing Lender">Equal Housing Lender - We do business in accordance with the Federal Fair Housing Law and the Equal Housing Opportunity Act.
</div>
<div class="third links">
<?php wp_nav_menu( array( 'theme_location' => 'footer-notices', 'menu_class' => 'nav-menu' ) ); ?>
</div>
</div>
<!--</div> #container -->
<?php wp_footer(); ?>
</body>
</html>