-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
46 lines (43 loc) · 1.26 KB
/
Copy pathfooter.php
File metadata and controls
46 lines (43 loc) · 1.26 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package themezone
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
$container = get_theme_mod( 'themezone_container_type' );
?>
<footer>
<?php get_template_part( 'template-parts/widgets/widget', 'footerfull' ); ?>
<div class="wrapper" id="wrapper-footer">
<div class="<?php echo esc_attr( $container ); ?>">
<div class="row">
<div class="col-md-6">
<?php echo do_shortcode('[copyright]'); ?>
</div>
<div class="col-md-6">
<?php echo do_shortcode('[copyright-developer]'); ?>
</div>
</div>
<div class="row">
<div class="col-md-12">
<footer class="site-footer" id="colophon">
<div class="site-info">
<?php themezone_site_info(); ?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!--col end -->
</div><!-- row end -->
</div><!-- container end -->
</div><!-- wrapper end -->
</footer><!-- footer end -->
</div><!-- #page we need this extra closing tag here -->
<?php wp_footer(); ?>
<?= zn_option_get('hook-bottom') ?>
</body>
</html>