timelines/inc/featured-alt.php
Alexander Agnarson 586fec075d 1.1.2
2024-03-29 21:48:01 +01:00

39 lines
938 B
PHP

<?php
// Query featured entries
$featured = new WP_Query(
array(
'no_found_rows' => false,
'update_post_meta_cache' => false,
'update_post_term_cache' => false,
'ignore_sticky_posts' => 1,
'posts_per_page' => absint( get_theme_mod('featured-posts-count','5') ),
'cat' => absint( get_theme_mod('featured-category','') )
)
);
?>
<?php if ( is_home() && !is_paged() && ( get_theme_mod('featured-posts-count','5') !='0') && $featured->have_posts() ): // Show slider if posts are not 0 ?>
<div class="slick-featured slick-featured-alt">
<div class="slick-featured-inner">
<div class="slick-posts-alt">
<?php while ( $featured->have_posts() ): $featured->the_post(); ?>
<div>
<?php get_template_part('content-featured-alt'); ?>
</div>
<?php endwhile; ?>
</div>
</div>
<div class="slick-posts-nav"></div>
</div>
<?php endif; ?>
<?php wp_reset_postdata(); ?>