wp/wp-content/themes/twentyfourteen/featured-content.php
changeset 8 c7c34916027a
parent 7 cf61fcea0001
child 9 177826044cd9
--- a/wp/wp-content/themes/twentyfourteen/featured-content.php	Mon Oct 14 17:39:30 2019 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,39 +0,0 @@
-<?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 -->