index.php
7.3 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php $get_lang = isset($wp_query->query_vars['prisna_translate_seo_request'])?urldecode($wp_query->query_vars['prisna_translate_seo_request']):''; ?>
<?php get_header();?>
<section class="web_main index_main">
<!-- banner -->
<div class="slider_banner">
<div class="swiper-wrapper">
<?php $images = get_get_field('ad_index_banner'); if( $images ): foreach( $images as $image ): ?>
<div class="swiper-slide"> <a href="<?php echo $image['alt']; ?>"> <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['title']; ?>"/></a></div>
<?php endforeach; endif; ?>
</div>
<div class="swiper-pagination swiper-pagination-white"></div>
<div class="swiper-button-next swiper-button-white"></div>
<div class="swiper-button-prev swiper-button-white"></div>
</div>
<div class="index_product">
<div class="layout">
<div class="index_title wow fadeInUpA">
<h2><em>Featured</em> products</h2>
<p class="title_desc">It is a long established fact that a reader will be distracted by the readable content page when looking at its layout.</p>
</div>
<div class="index_bd">
<div class="product_slider">
<ul class="swiper-wrapper product_items">
<?php $args = array('showposts' => 12, 'post_type' => 'post', 'meta_query' => array( 'relation' => 'OR', array( 'key' => 'special','value' => 'Feature Products','compare' => 'LIKE')));
$the_query = new WP_Query( $args );$i=1; if( $the_query->have_posts() ): while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<li class="swiper-slide product_item wow fadeInUpA" data-wow-delay="<?php if($i==1) : ?>0<?php else: ?>.<?php echo $i-1; ?>s<?php endif; ?>">
<figure> <span class="item_img"><img src="<?php $images = get_field('product_gallery'); if( $images ): for($x=0;$x<1; $x++){ ?><?php echo $images[0]['sizes']['thumbnail']; ?><?php } endif; ?>" alt="<?php echo mb_strimwidth(strip_tags(apply_filters('the_title',$post->post_title)), 0, 200,"..."); ?>"/><a href="<?php the_permalink() ?>"></a></span>
<figcaption>
<h3 class="item_title"><a href="<?php the_permalink() ?>"><?php echo mb_strimwidth(strip_tags(apply_filters('the_title',$post->post_title)), 0, 50,"..."); ?></a></h3>
</figcaption>
</figure>
</li>
<?php $i++; endwhile; endif; wp_reset_query(); ?>
</ul>
<div class="index_swiper_control">
<div class="swiper-button-prev"><i></i></div>
<div class="swiper-button-next"><i></i></div>
</div>
</div>
</div>
</div>
</div>
<div class="index_sale">
<div class="layout">
<div class="index_bd">
<div class="sale_box wow fadeInLeftA" data-wow-delay=".1s">
<div class="box_inner">
<div class="sale_box_hd">
<h4>For summer Ride</h4>
<h3>SALE UP <span class="progress_num">40%</span></h3>
<div class="progress_bar"><span style="width: 40%"></span></div>
</div>
<div class="sale_box_bd">
<ul class="sale_txt_list">
<?php get_the_field('about_text'); ?>
</ul>
<div class="learn_more">
<a href="<?php echo home_url("/"); ?>about-us/" class="sys_btn">About Us</a>
</div>
</div>
</div>
</div>
<div class="sale_img wow fadeInRightA" data-wow-delay=".1s"><?php $images = get_get_field('about_img'); if( $images ): foreach( $images as $image ): ?>
<a href="<?php echo home_url("/"); ?>about-us/"><img src="<?php echo $image['url']; ?>" alt="<?php echo $image['description']; ?>" /></a>
<?php endforeach; endif; ?></div>
</div>
</div>
</div>
<div class="index_promote">
<div class="layout">
<div class="index_title wow fadeInUpA">
<h2><em>riding</em> accessories</h2>
<p class="title_desc">It is a long established fact that a reader will be distracted by the readable content page when looking at its layout.</p>
</div>
<div class="index_bd">
<ul class="promote_items">
<?php $args = array('showposts' => 9, 'post_type' => 'post', 'meta_query' => array( 'relation' => 'OR', array( 'key' => 'special','value' => 'New Arrivals','compare' => 'LIKE')));
$the_query = new WP_Query( $args );$i=1; if( $the_query->have_posts() ): while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<li class="promote_item wow fadeInUpA" data-wow-delay="<?php if($i==1) : ?>0<?php else: ?>.<?php echo $i-1; ?>s<?php endif; ?>">
<figure class="item_inner">
<div class="item_img"><a href="<?php the_permalink() ?>"><img src="<?php $images = get_field('product_gallery'); if( $images ): for($x=0;$x<1; $x++){ ?><?php echo $images[0]['sizes']['thumbnail']; ?><?php } endif; ?>" alt="<?php echo mb_strimwidth(strip_tags(apply_filters('the_title',$post->post_title)), 0, 200,"..."); ?>"/></a></div>
<figcaption class="item_info">
<h3 class="item_title"><a href="<?php the_permalink() ?>"><?php echo mb_strimwidth(strip_tags(apply_filters('the_title',$post->post_title)), 0, 50,"..."); ?></a></h3>
</figcaption>
</figure>
</li>
<?php $i++; endwhile; endif; wp_reset_query(); ?>
</ul>
</div>
</div>
</div>
<div class="index_news">
<div class="layout">
<div class="index_title wow fadeInUpA">
<h2><em>Latest</em> News</h2>
<p class="title_desc">It is a long established fact that a reader will be distracted by the readable content page when looking at its layout.</p>
</div>
<div class="index_bd">
<ul class="news_items">
<?php query_posts(array( 'post_type' => 'news','showposts' => 5,'orderby' => 'post_date','order'=> 'DESC') ); while (have_posts()) : the_post();?>
<li class="news_item wow fadeInUpA" data-wow-delay=".1s">
<figure class="item_inner">
<div class="item_img"><a href="<?php echo $get_lang?home_url('/') .$get_lang.'/news/' . $post->post_name:home_url('/') .'news/' . $post->post_name ; ?>"><?php $image = get_field('news_img');if( !empty($image) ): ?><img src="<?php echo $image['url']; ?>" alt="<?php echo mb_strimwidth(strip_tags(apply_filters('the_title',$post->post_title)), 0, 200,"..."); ?>"></a><?php endif; ?></div>
<figcaption class="item_info">
<h3 class="item_title"><a href="<?php echo $get_lang?home_url('/') .$get_lang.'/news/' . $post->post_name:home_url('/') .'news/' . $post->post_name ; ?>"><?php echo mb_strimwidth(strip_tags(apply_filters('the_title',$post->post_title)), 0, 44,"..."); ?></a></h3>
<div class="item_meta"><span class="name"> <?php the_time('d/m/y') ?></span> </div>
<div class="item_desc"><?php echo mb_strimwidth(strip_tags(apply_filters('the_content',$post->post_content)), 0, 44,"..."); ?></div>
</figcaption>
</figure>
</li>
<?php endwhile; wp_reset_query(); ?>
</ul>
</div>
</div>
</div>
</section>
<?php get_footer();?>