-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
62 lines (60 loc) · 1.86 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
60
61
62
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "wrapper" div and all content after.
*
* @package WordPress
* @subpackage Hestia
* @since Hestia 1.0
*/
$hestia_general_credits = get_theme_mod( 'hestia_general_credits',
sprintf(
esc_html__( '%1$s', 'hestia-pro' ),
sprintf( '<a href="https://github.com/alexkafer/TEDxUMN" target="_blank" rel="nofollow">Website Source Code on GitHub</a>', esc_html__( 'Hestia', 'hestia-pro' ) ))
); ?>
<footer class="footer footer-black footer-big">
<div class="container">
<div class="content">
<div class="row">
<div class="col-md-12">
<?php if ( is_active_sidebar( 'footer-one-widgets' ) ) : ?>
<div class="col-md-4">
<?php dynamic_sidebar( 'footer-one-widgets' ); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'footer-two-widgets' ) ) : ?>
<div class="col-md-4">
<?php dynamic_sidebar( 'footer-two-widgets' ); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'footer-three-widgets' ) ) : ?>
<div class="col-md-4">
<?php dynamic_sidebar( 'footer-three-widgets' ); ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
<hr />
<?php
wp_nav_menu( array(
'menu' => esc_html__( 'Footer Menu', 'hestia-pro' ),
'theme_location' => 'footer',
'depth' => 1,
'container' => 'ul',
'menu_class' => 'footer-menu pull-left',
) );
?>
<?php if ( ! empty( $hestia_general_credits ) || is_customize_preview() ) : ?>
<div class="copyright pull-right">
<?php echo wp_kses_post( $hestia_general_credits ); ?>
</div>
<?php endif; ?>
</div>
</footer>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>