Fix featured count

This commit is contained in:
Alexander Agnarson 2017-12-28 12:33:02 +01:00
parent ba6b95ca63
commit 84a6dbbcc8
3 changed files with 5 additions and 5 deletions

View file

@ -6,13 +6,13 @@ $featured = new WP_Query(
'update_post_meta_cache' => false,
'update_post_term_cache' => false,
'ignore_sticky_posts' => 1,
'posts_per_page' => get_theme_mod('featured-posts-count','6'),
'posts_per_page' => get_theme_mod('featured-posts-count','3'),
'cat' => get_theme_mod('featured-category','')
)
);
?>
<?php if ( is_home() && !is_paged() && ( get_theme_mod('featured-posts-count','6') !='0') || is_page_template( 'page-templates/frontpage.php' ) ): ?>
<?php if ( is_home() && !is_paged() && ( get_theme_mod('featured-posts-count','3') !='0') || is_page_template( 'page-templates/frontpage.php' ) ): ?>
<div id="owl-featured" class="owl-carousel owl-theme">
<?php while ( $featured->have_posts() ): $featured->the_post(); ?>