-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·55 lines (43 loc) · 1.45 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
49
50
51
52
53
54
55
<?php
require_once 'mobile_detect.php';
$mobile_detector = new Mobile_Detect;
$is_mobile = $mobile_detector->isMobile();
$contact_phone = $is_mobile ? "tel:2484700086" : "/contact-us";
$template_dir = get_stylesheet_directory_uri();
$scripts = array(
"$template_dir/dist/manifest.js",
"$template_dir/dist/common.js",
"$template_dir/dist/main.js"
);
function icon_url($dir, $name)
{
return "$dir/assets/images/$name";
}
?>
<?php
if (!is_front_page()) {
site_content_end(); ?>
<footer class="site-footer">
<div class="site-footer-links">
<a target="_blank" href="https://www.youtube.com/channel/UCP4ckjPTHF-QIgDpfBneV0A">
<img src="<?=icon_url($template_dir, 'footer-youtube.png')?>" alt="YouTube"/></a>
<a target="_blank" href="https://www.instagram.com/mciiclothing/">
<img src="<?=icon_url($template_dir, 'footer-instagram.png')?>" alt="Instagram"/></a>
<span class="site-copyright">© MCII <?= date("Y") ?></span>
<a target="_blank" href="/contact-us">
<img src="<?=icon_url($template_dir, 'footer-email.png')?>" alt="Email"/></a>
<a target="_blank" href="<?= $contact_phone ?>">
<img src="<?=icon_url($template_dir, 'footer-phone.png')?>" alt="Phone"/></a>
</div>
</footer>
<?php
} ?>
<script src="https://cdnjs.cloudflare.com/ajax/libs/turn.js/3/turn.min.js"></script>
<?php
foreach ($scripts as $script) {
?><script src="<?=$script?>"></script><?php
}
?>
<?php wp_footer();?>
</body>
</html>