File: /var/www/html/onlineshop/wp-content/themes/nautica/featured-content.php
<?php
/**
* The template for displaying featured content
*
* @package Engotheme
* @subpackage Engo_Theme
* @since EngoTheme 1.0
*/
?>
<div id="featured-content" class="featured-content">
<div class="featured-content-inner">
<?php
/**
* Fires before the EngoTheme featured content.
*
* @since EngoTheme 1.0
*/
do_action( 'nautica_fnc_featured_posts_before' );
$featured_posts = nautica_fnc_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 EngoTheme featured content.
*
* @since EngoTheme 1.0
*/
do_action( 'nautica_fnc_featured_posts_after' );
wp_reset_postdata();
?>
</div><!-- .featured-content-inner -->
</div><!-- #featured-content .featured-content -->