55e956dd67
A magazine theme with clean, responsive design focused on highlighting featured content prominently on home page. This is slated for 3.8. Development will occur in trunk for the theme, and in plugins for the nice-to-have features. Nice-to-have improvements include: - Add a Contributors page template to highlight authors. - Easy-to-manage featured content. - Add support for an Authors widget to highlight authors. Welcome, Twenty Fourteen né Further. Props iamtakashi, see #24858. git-svn-id: https://develop.svn.wordpress.org/trunk@24832 602fd350-edb4-49c9-b593-d223f7449a82
20 lines
545 B
PHP
20 lines
545 B
PHP
<div class="featured-content-wrapper">
|
|
<div id="featured-content" class="featured-content clearfix">
|
|
|
|
<?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 -->
|
|
</div><!-- .featured-content-wrapper -->
|