-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
88 lines (78 loc) · 3.74 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php use app\controllers\Assets; ?>
<?php
$time = ot_get_option('time', false);
$address = ot_get_option('address', false);
$tell_footer = ot_get_option('tell_footer', false);
$social = ot_get_option('social', array());
?>
<footer>
<div class="footer_Custom">
<div class="container main-container">
<div class="col-12 col-sm-4 col-lg-3">
<?php
wp_nav_menu( array(
'theme_location' => 'footer_menu',
'container_class' => 'custom-menu-class' ) );
?>
</div>
<div class="col-12 col-sm-4 col-lg-3">
<ul>
<?php $posts_query = new WP_Query('posts_per_page=5');
while ($posts_query->have_posts()) : $posts_query->the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; wp_reset_query(); ?>
</ul>
</div>
<div class="col-12 col-sm-4 col-lg-3">
<div class="work_time">
<span>ساعت کاری :</span>
<span><?php echo $time?></span>
<span><span class="location_custom"></span><?php echo $address?></span>
<span><span class="phone_footer_custom"> </span><span class="end_custom"><?php echo $tell_footer?></span> <span class="first_custom">۰۲۱</span> </span>
<span><span class="web_custom"></span>www.AxisGold.com</span>
</div>
</div>
<div class="col-12 col-lg-3">
<div class="contacUs">
<ul>
<li><a href="#">درباره ما</a></li>
<li><a href="#">تماس با ما</a></li>
</ul>
</div>
<div class="nemad_section_footer">
<img src="<?php echo Assets::image('nemad.png') ?>" alt=""> نماد اعتماد الکترونیکی
</div>
<div class="social_media_section">
<ul>
<?php foreach ($social as $s):?>
<li><a href="<?php echo $s['link']?>"><span class="<?php echo $s['icon']?>"></span></a></li>
<?php endforeach;?>
<!-- <li><a href="#"><span class="fa fa-linkedin"></span></a></li>-->
<!-- <li><a href="#"><span class="fa fa-telegram"></span></a></li>-->
<!-- <li><a href="#"><span class="fa fa-instagram"></span></a></li>-->
<!-- <li><a href="#"><span class="aparat"><img src="--><?php //echo Assets::image('aparat.png')?><!--" alt=""></span></a></li>-->
</ul>
</div>
</div>
</div>
</div>
<div class="footer_last_section">
<div class="container main-container footer_last_section_custom">
<p class="owner">تمامی حقوق این وبسایت متعلق به شرکت اکسیس گلد می باشد.</p>
<div class="English_owner">
<img src="<?php echo Assets::image('footer_last_image.png')?>" alt="">
<p>atalysor DesignStudio Team...</p>
</div>
</div>
</div>
</footer>
</body>
<script src="<?php Assets::js('jquery.min.js')?>"></script>
<script src="<?php Assets::js('jquery-ui.js')?>"></script>
<script src="<?php Assets::js('bootstrap.min.js')?>"></script>
<script src="<?php Assets::js('fontawesome.min.js')?>"></script>
<script src="<?php Assets::js('functions.js')?>"></script>
<script src="<?php Assets::js('flickity.pkgd.min.js')?>"></script>
<?php wp_footer(); ?>
</html>