mirror of
https://ghproxy.net/https://github.com/AlxMedia/blogside.git
synced 2025-08-27 01:21:23 +08:00
Initial commit
This commit is contained in:
commit
1559ebf611
149 changed files with 49510 additions and 0 deletions
26
inc/featured.php
Normal file
26
inc/featured.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?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' => ot_get_option('featured-posts-count'),
|
||||
'cat' => ot_get_option('featured-category')
|
||||
)
|
||||
);
|
||||
?>
|
||||
|
||||
<?php if ( is_home() && !is_paged() && ( ot_get_option('featured-posts-count') !='0') ): ?>
|
||||
|
||||
<div class="pad pad-top">
|
||||
<div id="owl-featured" class="owl-carousel owl-theme">
|
||||
<?php while ( $featured->have_posts() ): $featured->the_post(); ?>
|
||||
<?php get_template_part('content-featured'); ?>
|
||||
<?php endwhile; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php endif; ?>
|
||||
<?php wp_reset_postdata(); ?>
|
Loading…
Add table
Add a link
Reference in a new issue