-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
60 lines (42 loc) · 1.1 KB
/
footer.php
File metadata and controls
60 lines (42 loc) · 1.1 KB
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
<?php
/**
* The theme's footer file that appears on EVERY page.
*
* @since 1.0.0
* @package RealBigPlugins
*/
// Don't load directly
if ( ! defined( 'ABSPATH' ) ) {
die;
}
?>
<?php if ( ! edd_is_checkout() ) : ?>
<footer id="site-footer">
<div class="site-footer-top text-center row">
<div class="columns small-12">
<h1 class="site-footer-head">Subscribe to our Newsletter</h1>
<p class="site-footer-subhead">
Subscribe to our newsletter to receive special discounts, new product announcements and helpful resources from Real Big Plugins.
</p>
<?php get_template_part( 'includes/html-mailchimp-signup-form' ); ?>
</div>
</div>
<div class="site-footer-divider"></div>
<div class="site-footer-bottom row">
<?php foreach (
array(
'footer-left',
'footer-center',
'footer-right',
) as $sidebar
) : ?>
<ul class="<?php echo $sidebar; ?> site-footer-bottom-widgets small-12 medium-4 columns">
<?php dynamic_sidebar( $sidebar ); ?>
</ul>
<?php endforeach; ?>
</div>
</footer>
<?php endif; ?>
<?php wp_footer(); ?>
</body>
</html>