-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
35 lines (30 loc) · 1.04 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
</div>
</div>
<footer id="footer">
<div class="footer_wrapper tessssssst">
<?php get_template_part('partials/footers/footer', 'top'); ?>
<?php get_template_part('partials/footers/footer', 'bottom'); ?>
<?php get_template_part('partials/footers/copyright'); ?>
</div>
</footer>
<?php if(is_singular('events')): ?>
<?php get_template_part( 'partials/event', 'form' ); ?>
<?php endif; ?>
<!-- Searchform -->
<?php get_template_part('partials/searchform'); ?>
<script>
var cf7_custom_image = '<?php echo esc_url( get_stylesheet_directory_uri() ) ?>/assets/img/';
var daysStr = '<?php esc_html_e('Days', 'masterstudy'); ?>';
var hoursStr = '<?php esc_html_e('Hours', 'masterstudy'); ?>';
var minutesStr = '<?php esc_html_e('Minutes', 'masterstudy'); ?>';
var secondsStr = '<?php esc_html_e('Seconds', 'masterstudy'); ?>';
</script>
<?php
global $wp_customize;
if( is_stm() && ! $wp_customize ){
get_template_part( 'partials/frontend_customizer' );
}
?>
<?php wp_footer(); ?>
</body>
</html>