<?php
/**
* Slider Style 1
*
* @package magplus
* @since 1.0
*/
?>
<?php
wp_enqueue_script('swiper');
wp_enqueue_style('swiper');
$posts_per_page = magplus_get_opt('slider-posts-per-page');
$slider_top_margin = magplus_get_opt('slider-margin-top');
$slider_order = magplus_get_opt('slider-post-order');
$slider_orderby = magplus_get_opt('slider-post-orderby');
$slider_style = (!empty($slider_top_margin)) ? ' style="padding-top:'.esc_attr($slider_top_margin).'px;"':'';
$args = array(
'orderby' => $slider_orderby,
'order' => $slider_order,
'posts_per_page' => $posts_per_page,
'meta_query' => array(array('key' => '_thumbnail_id')),
);
$categories = magplus_get_opt('slider-category');
if (is_array($categories)) {
$args['category__in'] = $categories;
}
$the_query = new WP_Query(apply_filters('magplus_block_query_args', $args, 'slider'));
$editor_args = array(
'orderby' => 'ID',
'posts_per_page' => 4,
'meta_query' => array(array('key' => '_thumbnail_id')),
);
$editor_categories = magplus_get_opt('slider-editor-category');
if (is_array($editor_categories)) {
$editor_args['category__in'] = $editor_categories;
}
$editor_query = new WP_Query($editor_args);
?>
<div class="swiper-container tt-mag-slider tt-slider-custom-marg" <?php echo wp_kses_data($slider_style); ?> data-autoplay="<?php echo magplus_get_opt('slider-autoplay'); ?>" data-loop="<?php echo magplus_get_opt('slider-loop-switch'); ?>" data-speed="<?php echo magplus_get_opt('slider-speed'); ?>" data-center="0" data-slides-per-view="1" data-add-slides="1">
<div class="swiper-wrapper<?php echo (!magplus_get_opt('slider-swipe-switch')) ? ' swipe-disabled':''; ?> clearfix">
<?php
$i = 0;
while ($the_query -> have_posts()) : $the_query -> the_post();
$image_src = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full');
$image_src = (!empty($image_src) && is_array($image_src)) ? $image_src[0]:'';
$gradient_enable = magplus_get_post_opt('post-enable-custom-overlay');
$color_first = magplus_get_post_opt('post-overlay-first-color');
$color_second = magplus_get_post_opt('post-overlay-second-color');
$gradient_style = ($gradient_enable && !empty($color_first) || !empty($color_second)) ? ' style="background: -webkit-linear-gradient(bottom, '. $color_first .', '. $color_second .' );background: linear-gradient(to bottom, '. $color_first .', '. $color_second .' );"':'';
?>
<div class="swiper-slide slider-style2 custom-hover-image <?php echo ($i === 0) ? 'active':''; ?>" data-val="<?php echo esc_attr($i); ?>">
<div class="tt-mslide">
<div class="tt-mslide-image bg tt-mslide" style="background-image:url(<?php echo esc_url($image_src); ?>);">
<div class="tt-mslide-gradient" <?php echo wp_kses_post($gradient_style); ?>></div>
<a class="tt-mslide-link" href="<?php echo esc_url(get_the_permalink()); ?>"></a>
</div>
<div class="container">
<div class="tt-mslide-table">
<div class="tt-mslide-cell">
<div class="tt-mslide-block">
<div class="tt-mslide-cat">
<?php
$category = get_the_category();
if(is_array($category) && !empty($category)):
foreach($category as $cat): ?>
<a class="c-btn type-3 color-2 tt-mslide-cat" href="<?php echo esc_url(get_category_link($cat->term_id)); ?>"><?php echo esc_html($cat->cat_name); ?></a>
<?php
endforeach;
endif;
?>
</div>
<h1 class="tt-mslide-title c-h1"><?php the_title(); ?></h1>
<div class="tt-mslide-label">
<span class="tt-mslide-author"><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' )); ?>"><?php echo get_the_author(); ?></a></span>
<span class="tt-mslide-date"><?php echo magplus_slider_time_format(); ?></span>
</div>
</div>
<?php if($editor_query->have_posts()): ?>
<div class="row hidden-xs">
<div class="col-sm-4 col-sm-offset-8">
<div class="pleft30 slider-style2-post-grid">
<div class="tt-title-block light">
<h3 class="tt-title-text"><?php esc_html_e('Editors Picks', 'magplus'); ?></h3>
</div>
<div class="empty-space marg-lg-b15"></div>
<ul class="tt-post-list dark">
<?php while ($editor_query -> have_posts()) : $editor_query -> the_post(); ?>
<li>
<div <?php post_class('tt-post type-7 light clearfix'); ?>>
<?php magplus_post_format('magplus-small-alt', 'img-responsive'); ?>
<div class="tt-post-info">
<?php magplus_blog_title('c-h6'); ?>
<?php magplus_blog_category(); ?>
</div>
</div>
</li>
<?php endwhile; wp_reset_postdata(); ?>
</ul>
</div>
</div>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
<?php $i++; endwhile; wp_reset_postdata(); ?>
</div>
<div class="pagination c-pagination pos-2"></div>
<div class="swiper-arrow-left <?php echo (!magplus_get_opt('slider-show-pagination-switch')) ? 'hidden-lg':''; ?> c-arrow size-2 left hidden-xs hidden-sm"><i class="fa fa-chevron-left" aria-hidden="true"></i></div>
<div class="swiper-arrow-right <?php echo (!magplus_get_opt('slider-show-pagination-switch')) ? 'hidden-lg':''; ?> c-arrow size-2 right hidden-xs hidden-sm"><i class="fa fa-chevron-right" aria-hidden="true"></i></div>
</div>
|