-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoverflow-posts.php
43 lines (35 loc) · 1.59 KB
/
coverflow-posts.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
<div id="coverflow-posts" class="container featured-area">
<div class="section-title title-font">
<span><div><?php echo esc_html( get_theme_mod('kurama_a_coverflow_title',__('Featured Posts','kurama')) ); ?></div></span>
</div>
<div class="swiper-container-posts">
<div class="swiper-wrapper">
<?php
$args = array(
'post_type' => 'post',
'posts_per_page' => esc_html( get_theme_mod('kurama_a_coverflow_pc',10) ),
'cat' => esc_html( get_theme_mod('kurama_a_coverflow_cat',0) ),
);
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) :
$loop->the_post();
global $product;
$image_url = get_template_directory_uri()."/assets/images/placeholder-sq.jpg";
if ( has_post_thumbnail() ) :
$image_data = wp_get_attachment_image_src( get_post_thumbnail_id( $loop->post->ID), 'kurama-sq-thumb' );
$image_url = $image_data[0];
endif;
?>
<div class="swiper-slide" style="background-image:url(<?php echo esc_url( $image_url ); ?>)">
<a href="<?php echo get_permalink( $loop->post->ID ) ?>" title="<?php echo esc_attr($loop->post->post_title ? $loop->post->post_title : $loop->post->ID); ?>">
<div class="product-details">
<h3><?php the_title(); ?></h3>
</div>
</a>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
<!-- Add Pagination -->
</div>
</div>