mirror of
https://ghproxy.net/https://github.com/AlxMedia/featureon.git
synced 2025-08-26 11:38:56 +08:00
25 lines
806 B
PHP
25 lines
806 B
PHP
|
<?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(); ?>
|