mirror of
https://ghproxy.net/https://github.com/AlxMedia/blogrow.git
synced 2025-08-27 01:46:10 +08:00
Fix featured count
This commit is contained in:
parent
ba6b95ca63
commit
84a6dbbcc8
3 changed files with 5 additions and 5 deletions
|
@ -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(); ?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue