This repository was archived by the owner on Feb 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
79 lines (70 loc) · 2.29 KB
/
footer.php
File metadata and controls
79 lines (70 loc) · 2.29 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
/**
* The template for displaying the footer.
*
* Contains footer content and the closing of the
* #main div element.
*
* @package Odin
* @since 2.2.0
*/
?>
</div><!-- .row -->
</div><!-- #wrapper -->
<footer id="footer" role="contentinfo">
<?php if ( ! is_page_template( 'page-landing.php' ) ) : ?>
<section class="footer-widgets sidebar">
<div class="container">
<div class="row">
<?php if ( is_active_sidebar( 'footer-widget-area-1' ) ) : ?>
<div class="footer-widget-area footer-widget-area-1 col-md-3 col-sm-6 col-xs-12">
<?php
if ( ! dynamic_sidebar( 'footer-widget-area-1' ) ) {
}
?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'footer-widget-area-2' ) ) : ?>
<div class="footer-widget-area footer-widget-area-2 col-md-3 col-sm-6 col-xs-12">
<?php
if ( ! dynamic_sidebar( 'footer-widget-area-2' ) ) {
}
?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'footer-widget-area-3' ) ) : ?>
<div class="footer-widget-area footer-widget-area-3 col-md-3 col-sm-6 col-xs-12">
<?php
if ( ! dynamic_sidebar( 'footer-widget-area-3' ) ) {
}
?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'footer-widget-area-4' ) ) : ?>
<div class="footer-widget-area footer-widget-area-4 col-md-3 col-sm-6 col-xs-12">
<?php
if ( ! dynamic_sidebar( 'footer-widget-area-4' ) ) {
}
?>
</div>
<?php endif; ?>
</div>
</div>
</section>
<?php endif; // if is landing ?>
<section class="footer-colophon">
<div class="container">
<div class="col-md-6 copy">
© <?php echo date( 'Y' ); ?> <a href="<?php echo home_url(); ?>"><?php bloginfo( 'name' ); ?></a> - <?php _e( 'All rights reserved', 'haste-store' ); ?>
</div>
<div class="col-md-6 credits">
<a href="<?php echo esc_url( get_theme_mod( 'site-credits-link', 'http://www.hastedesign.com.br' ) ); ?>">
<?php echo esc_attr( get_theme_mod( 'site-credits-text', __( 'Proudly powered by Haste Store and WordPress', 'haste-store' ) ) ); ?>
</a>
</div>
</div><!-- .container -->
</section>
</footer><!-- #footer -->
<?php wp_footer(); ?>
</body>
</html>