-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
60 lines (38 loc) · 1.48 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
60
</div>
</div> <!-- end #content -->
<footer class="footer" role="contentinfo">
<div id="inner-footer" class="wrap cf">
<div id="footer-about">
<?php
$about = get_page_by_path( 'about-mountain-transit', OBJECT );
if ( isset($about) ) {
$excerpt = get_extended( $about->post_content )['main'];
echo $excerpt . ' ';
printf( '<a href="%s">Read more about Mountain Transit »</a>', get_permalink($about->ID) );
edit_post_link( 'Edit this text', '<br />', '', $about->ID );
}
?>
</div>
<div id="footer-left-menu">
<?php wp_nav_menu( array( 'theme_location' => 'footer-menu', 'depth' => 1 ) ); ?>
</div>
<div id="footer-right-menu" class="clear">
<?php wp_nav_menu( array( 'theme_location' => 'footer-secondary', 'depth' => 1 ) ); ?>
</div>
<br style="clear:both" />
<div id="footer-copyright" class="source-org">
© <?php echo date('Y'); ?> <?php bloginfo( 'name' ); ?>
</div>
<div id="footer-attributions">
<a href="<?php echo get_site_url(); ?>/site-credits">Site Credits</a>
</div>
</div>
</footer>
</div> <!-- end #container -->
<!-- Begin Constant Contact Active Forms -->
<script> var _ctct_m = "d1555e2923350a0778b93bd6a2c6ab54"; </script>
<script id="signupScript" src="//static.ctctcdn.com/js/signup-form-widget/current/signup-form-widget.min.js" async defer></script>
<!-- End Constant Contact Active Forms -->
<?php wp_footer(); ?>
</body>
</html>