-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·53 lines (53 loc) · 1.42 KB
/
Copy pathfooter.php
File metadata and controls
executable file
·53 lines (53 loc) · 1.42 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
<div class="utune-footer">
<div class="container">
<div class="row utune-footer-widgets">
<div class="col-md-3 col-xs-3">
<?php if(is_active_sidebar('Footer 1')): ?>
<?php dynamic_sidebar('Footer 1'); ?>
<?php endif; ?>
</div>
<div class="col-md-3 col-xs-3">
<?php if(is_active_sidebar('Footer 2')): ?>
<?php dynamic_sidebar('Footer 2'); ?>
<?php endif; ?>
</div>
<div class="col-md-3 col-xs-3">
<?php if(is_active_sidebar('Footer 3')): ?>
<?php dynamic_sidebar('Footer 3'); ?>
<?php endif; ?>
</div>
<div class="col-md-3 col-xs-3">
<?php if(is_active_sidebar('Footer 4')): ?>
<?php dynamic_sidebar('Footer 4'); ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
<div class="utune-copyright">
<div class="container">
<div class="row">
<div class="col-md-8 col-xs-4 utune-copyright-text">
<?php echo utune_get_option('copyright');?>
</div>
<div class="col-md-4 col-xs-8 pull-right utune-footer-link">
<?php
wp_nav_menu(
array(
'theme_location'=>'secondary',
'menu_class'=>'secondary-menu',
'fallback_cb'=>false
)
);
?>
</div>
</div>
</div>
</div>
<div class="utune-backto-top">
<i class="fa fa-angle-up"></i>
<!-- <img src="<?php echo get_bloginfo('template_url'); ?>/assets/images/arrow-up.png" alt=""> -->
</div>
<?php wp_footer(); ?>
</body>
</html>