-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
59 lines (40 loc) · 1.19 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
<?php
/**
* The theme's footer file that appears on EVERY page.
*
* @since 1.0.0
* @package Love_From_Louie
*/
// Don't load directly
if ( ! defined( 'ABSPATH' ) ) {
die;
}
?>
</section><!-- #site-content -->
<footer id="site-footer">
<div class="row">
<?php
$footer_sidebars = array(
'footer-left',
'footer-center',
'footer-right',
);
foreach ( $footer_sidebars as $sidebar ) : ?>
<div class="small-12 medium-4 columns">
<?php dynamic_sidebar( $sidebar ); ?>
</div>
<?php endforeach; ?>
</div>
<div class="row">
<div class="small-12 columns text-center">
<?php echo sprintf( _x( 'Site by %s', 'Site By Footer Text', 'love-from-louie' ), '<a href="//realbigmarketing.com/" target="_blank">Real Big Marketing</a>' ); ?>
<br />
<?php echo sprintf( _x( 'Copyright © %s %s', 'Copyright Footer Text', 'love-from-louie' ), date( 'Y' ), get_bloginfo( 'name' ) ); ?>
</div>
</div>
</footer>
</div><!-- .off-canvas-content -->
</div><!-- #wrapper -->
<?php wp_footer(); ?>
</body>
</html>