Initial commit

This commit is contained in:
Alexander Agnarson 2016-02-03 11:28:05 +01:00
commit 1559ebf611
149 changed files with 49510 additions and 0 deletions

26
inc/featured.php Normal file
View 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(); ?>