kollapsminoriteten/wp-content/themes/hitmag/template-parts/featured-slider.php

95 lines
4.3 KiB
PHP
Raw Normal View History

2022-12-15 19:06:02 +01:00
<?php
if ( true == get_theme_mod( 'show_slider', true ) ) :
$hm_slider_category = get_theme_mod( 'slider_category', '0' );
$slider_posts = new WP_Query(
array(
'cat' => $hm_slider_category,
'posts_per_page' => 5,
'no_found_rows' => true,
'ignore_sticky_posts' => true
)
);
?>
<div class="hitmag-featured-slider">
<section class="slider">
2023-05-23 23:18:12 +02:00
<div class="hm-slider hm-swiper">
<div class="hm-swiper-wrapper">
2022-12-15 19:06:02 +01:00
<?php
if ( $slider_posts->have_posts() ) :
while( $slider_posts->have_posts() ) : $slider_posts->the_post();
if ( has_post_thumbnail() ) {
$thumb_id = get_post_thumbnail_id();
$featured_url_array = wp_get_attachment_image_src( $thumb_id, 'hitmag-featured' );
$featured_image_url = ( ! empty( $featured_url_array ) ) ? $featured_url_array[0] : get_template_directory_uri() . '/images/slide.jpg';
} else {
$featured_image_url = get_template_directory_uri() . '/images/slide.jpg';
}
?>
2023-05-23 23:18:12 +02:00
<div class="hm-swiper-slide">
<div class="hm-slide-holder" style="background: url(<?php echo esc_url( $featured_image_url ); ?>);">
<div class="hm-slide-content">
<a class="hmwcsw" href="<?php the_permalink(); ?>" rel="bookmark"></a>
<div class="hm-slider-details">
<?php hitmag_category_list(); ?>
<a href="<?php the_permalink(); ?>" rel="bookmark"><h3 class="hm-slider-title"><?php the_title(); ?></h3></a>
<div class="slide-entry-meta">
<?php hitmag_posted_on(); ?>
</div><!-- .entry-meta -->
</div><!-- .hm-slider-details -->
</div><!-- .hm-slide-content -->
</div><!-- .hm-slide-holder -->
</div><!-- .hm-swiper-slide -->
2022-12-15 19:06:02 +01:00
<?php
endwhile;
endif;
?>
2023-05-23 23:18:12 +02:00
</div><!-- .hm-swiper-wrapper -->
<div class="hm-swiper-button-next"></div>
<div class="hm-swiper-button-prev"></div>
</div><!-- .hm-slider hm-swiper -->
2022-12-15 19:06:02 +01:00
</section><!-- .slider -->
<?php $slider_posts->rewind_posts(); ?>
2023-05-23 23:18:12 +02:00
<div thumbsSlider="" class="hm-swiper hm-thumb-swiper">
<div class="hm-swiper-wrapper">
2022-12-15 19:06:02 +01:00
<?php
if ( $slider_posts->have_posts() ) :
while( $slider_posts->have_posts() ) : $slider_posts->the_post();
if ( has_post_thumbnail() ) {
$thumb_id = get_post_thumbnail_id();
$thumb_url_array = wp_get_attachment_image_src( $thumb_id, 'hitmag-thumbnail' );
$thumb_url = ( ! empty( $thumb_url_array ) ) ? $thumb_url_array[0] : get_template_directory_uri() . '/images/slide-thumb.jpg';
} else {
$thumb_url = get_template_directory_uri() . '/images/slide-thumb.jpg';
}
?>
2023-05-23 23:18:12 +02:00
<div class="hm-swiper-slide">
2022-12-15 19:06:02 +01:00
<div class="hm-thumb-bg"><img src="<?php echo esc_url( $thumb_url ); ?>" width="135" height="93" alt="" /></div>
2023-05-23 23:18:12 +02:00
</div><!-- .hm-swiper-slide -->
2022-12-15 19:06:02 +01:00
<?php
endwhile;
endif;
wp_reset_postdata();
?>
2023-05-23 23:18:12 +02:00
</div><!-- .hm-swiper-wrapper -->
</div><!-- .hm-thumb-swiper -->
2022-12-15 19:06:02 +01:00
</div><!-- .hm-slider -->
<?php endif;