-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·44 lines (40 loc) · 1.18 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
<?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
*/
$admin_email = get_option( 'admin_email' );
?>
</section>
<footer class="footer">
<div class="columns">
<div class="column">
<?php print apply_filters( 'the_content', get_field( 'footer-address', 'option' ) ); ?>
<p class="copyright no-mobile">Copyright © <?php print date( 'Y' ) . ' ' . get_bloginfo( 'name' ) ?>, LLC.</p>
</div>
<div class="column menu">
<?php wp_nav_menu( array( 'theme_location' => 'footer-menu', 'menu_class' => 'nav-menu' ) ); ?>
</div>
<div class="column social">
<div class="social-inner">
<?php
theme_social_icon( 'twitter' );
theme_social_icon( 'facebook' );
theme_social_icon( 'instagram' );
theme_social_icon( 'linkedin' );
theme_social_icon( 'youtube' );
?>
</div>
</div>
</div>
<p class="copyright mobile-only">Copyright © <?php print date( 'Y' ) . ' ' . get_bloginfo( 'name' ) ?>, LLC.</p>
</footer>
</div><!-- #container -->
<?php wp_footer(); ?>
</body>
</html>