Sha256: 5d9d97690487cb8f1c249868bd88c840362a3fb852b6c8c0d37449b76dba7d2f
Contents?: true
Size: 945 Bytes
Versions: 3
Compression:
Stored size: 945 Bytes
Contents
<?php /** * The template for displaying featured content * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ ?> <div id="featured-content" class="featured-content"> <div class="featured-content-inner"> <?php /** * Fires before the Twenty Fourteen featured content. * * @since Twenty Fourteen 1.0 */ do_action( 'twentyfourteen_featured_posts_before' ); $featured_posts = twentyfourteen_get_featured_posts(); foreach ( (array) $featured_posts as $order => $post ) : setup_postdata( $post ); // Include the featured content template. get_template_part( 'content', 'featured-post' ); endforeach; /** * Fires after the Twenty Fourteen featured content. * * @since Twenty Fourteen 1.0 */ do_action( 'twentyfourteen_featured_posts_after' ); wp_reset_postdata(); ?> </div><!-- .featured-content-inner --> </div><!-- #featured-content .featured-content -->
Version data entries
3 entries across 3 versions & 1 rubygems