featureon/inc/highlight.php

25 lines
806 B
PHP
Raw Normal View History

2020-03-11 14:51:38 +01:00
<?php
// Query highlight entries
$highlight = 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('highlight-posts-count','7') ),
'cat' => absint( get_theme_mod('highlight-category','') )
)
);
?>
<?php if ( is_home() && !is_paged() && ( get_theme_mod('highlight-posts-count','7') !='0') || is_single() || is_archive() || is_search() || is_404() || is_page() ): ?>
<div class="clear"></div>
<div id="owl-featured" class="owl-carousel owl-theme">
<?php while ( $highlight->have_posts() ): $highlight->the_post(); ?>
<?php get_template_part('content-highlight'); ?>
<?php endwhile; ?>
</div>
<?php endif; ?>
<?php wp_reset_postdata(); ?>