-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
48 lines (45 loc) · 2.46 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
<?php if(get_theme_mod('craftnce_footer_widget_show_setting', 1)) : ?>
<div class="footer-widget-wrapper py-5">
<div class="container">
<?php
if(get_theme_mod('craftnce_footer_widget_upper_section_show_setting', 1)) {
// Upper Panel
if('col_6' === get_theme_mod('craftnce_footer_widget_upper_section_layout_setting')) {
get_template_part('/template-parts/footer/six-quarter');
} elseif('col_4' === get_theme_mod('craftnce_footer_widget_upper_section_layout_setting')) {
get_template_part('/template-parts/footer/quarter');
} elseif('col_2' === get_theme_mod('craftnce_footer_widget_upper_section_layout_setting')) {
get_template_part('/template-parts/footer/cols-2');
}
}
if(get_theme_mod('craftnce_footer_widget_bottom_section_show_setting', 1)) {
// Bottom Panel
if('col_b_3' === get_theme_mod('craftnce_footer_widget_bottom_section_layout_setting')) {
get_template_part('/template-parts/footer/bottom-3-panel');
} elseif('col_b_2' === get_theme_mod('craftnce_footer_widget_bottom_section_layout_setting')) {
get_template_part('/template-parts/footer/bottom-2-panel');
} elseif('col_b_1' === get_theme_mod('craftnce_footer_widget_bottom_section_layout_setting')) {
get_template_part('/template-parts/footer/bottom-1-panel');
}
}
?>
</div>
</div>
<?php endif; ?>
<footer class="main-footer py-4">
<div class="container">
<div class="copyright-text text-center text-light text-sm">
<?php
if(get_theme_mod('craftnce_copyright_text_settings')) {
echo esc_html( get_theme_mod('craftnce_copyright_text_settings'));
} else {
echo '@ Craftnce | Developed by <a href="https://mamurjor.com/">Mamurjor</a> | 2021';
}
?>
</div>
</div>
</footer>
</div>
<?php wp_footer(); ?>
</body>
</html>