featured-content.php 452 B

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