featured-content.php 580 B

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