-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
33 lines (29 loc) · 961 Bytes
/
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
<?php
wp_enqueue_script('zcraft-vendor-ie10wr-script', get_template_directory_uri() . '/js/vendor/ie10-viewport-bug-workaround.js');
wp_enqueue_script('zcraft-generic-script', get_template_directory_uri() . '/js/zcraft.js');
if (is_front_page() &&!is_home())
{
wp_enqueue_script('zcraft-homepage-script', get_template_directory_uri() . '/js/homepage.js');
wp_enqueue_script('zcraft-servers-list-script', get_template_directory_uri() . '/js/servers_list.js');
}
?>
<footer>
<section>
<div>
<?php zcraft_inject_widgets('sidebar-footer-left'); ?>
</div>
</section>
<section class="footer-center">
<div>
<?php zcraft_inject_widgets('sidebar-footer-center'); ?>
</div>
</section>
<section>
<div>
<?php zcraft_inject_widgets('sidebar-footer-right'); ?>
</div>
</section>
</footer>
<?php wp_footer(); ?>
</body>
</html>