mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 01:39:37 +01:00
eaf78d3f7c
Built from https://develop.svn.wordpress.org/trunk@25769 git-svn-id: http://core.svn.wordpress.org/trunk@25682 1a063a9b-81f0-0310-95a4-ce76da25c4cd
31 lines
662 B
PHP
31 lines
662 B
PHP
<?php
|
|
/**
|
|
* The template for displaying featured content
|
|
*
|
|
* @todo: Add support for featured content.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Fourteen
|
|
* @since Twenty Fourteen 1.0
|
|
*/
|
|
?>
|
|
|
|
<div id="featured-content" class="featured-content">
|
|
|
|
<?php
|
|
do_action( 'twentyfourteen_featured_posts_before' );
|
|
|
|
$featured_posts = twentyfourteen_get_featured_posts();
|
|
foreach ( (array) $featured_posts as $order => $post ) :
|
|
setup_postdata( $post );
|
|
|
|
get_template_part( 'content', 'featured-post' );
|
|
endforeach;
|
|
|
|
do_action( 'twentyfourteen_featured_posts_after' );
|
|
|
|
wp_reset_postdata();
|
|
?>
|
|
|
|
</div><!-- #featured-content .featured-content -->
|