display-featured.php 461 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The template for displaying featured content
  4. *
  5. * @package Ixion
  6. */
  7. $featured_posts = ixion_get_featured_posts();
  8. if ( empty( $featured_posts ) ) {
  9. return;
  10. } ?>
  11. <div id="featured-content" class="featured-content">
  12. <?php
  13. foreach ( $featured_posts as $post ) {
  14. setup_postdata( $post );
  15. get_template_part( 'components/features/featured-content/content', 'featured' );
  16. }
  17. wp_reset_postdata();
  18. ?>
  19. </div><!-- #featured-content -->