-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
34 lines (27 loc) · 1.21 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
<?php if ( is_single() ) { ?>
<!-- Hide the footer when we are one a post. Going for the Magazine Effect. -->
<?php } else { ?>
<div class="w-section footer">
<div class="w-row">
<div class="w-col w-col-4 w-col-stack">
<a class="button" href="<?php the_field('left_button_link', 'option'); ?>"><?php the_field('left_button_title', 'option'); ?></a>
</div>
<div class="w-col w-col-4 w-col-stack">
<a class="button" href="<?php the_field('right_button_link', 'option'); ?>"><?php the_field('right_button_title', 'option'); ?></a>
</div>
<div class="w-col w-col-4 w-col-stack">
<?php include (TEMPLATEPATH . '/searchform.php' ); //This includes the Search Form ?>
</div>
</div>
<div class="w-container"><img class="footerlogo" src="<?php bloginfo('template_directory'); ?>/images/footer-logo.png">
<p class="copyright">© <?php echo date('Y'); ?> ROCKHARBOR</p>
</div>
</div>
<?php }
wp_footer();
// This fxn allows plugins to insert themselves/scripts/css/files (right here) into the footer of your website.
// Removing this fxn call will disable all kinds of plugins.
// Move it if you like, but keep it around.
?>
</body>
</html>