mirror of
https://ghproxy.net/https://github.com/AlxMedia/curver.git
synced 2025-08-28 15:08:39 +08:00
Initial commit
This commit is contained in:
commit
ee50200fe7
353 changed files with 78977 additions and 0 deletions
29
inc/featured.php
Normal file
29
inc/featured.php
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?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','0') ),
|
||||
'cat' => absint( get_theme_mod('featured-category','') )
|
||||
)
|
||||
);
|
||||
?>
|
||||
|
||||
<?php if ( is_home() && !is_paged() && ( get_theme_mod('featured-posts-count','0') !='0') && $featured->have_posts() ): // Show slider if posts are not 0 ?>
|
||||
|
||||
<div class="featured flexslider" id="flexslider-featured">
|
||||
<ul class="slides">
|
||||
<?php while ( $featured->have_posts() ): $featured->the_post(); ?>
|
||||
<li>
|
||||
<?php get_template_part('content-featured'); ?>
|
||||
</li>
|
||||
<?php endwhile; ?>
|
||||
</ul>
|
||||
</div><!--/.featured-->
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php wp_reset_postdata(); ?>
|
Loading…
Add table
Add a link
Reference in a new issue