示例#1
0
 * @package WordPress
 * @subpackage TemplateMela
 * @since TemplateMela 1.0
 */
?>

<div id="featured-content" class="featured-content">
  <div class="featured-content-inner">
    <?php 
/**
 * Fires before the TemplateMela featured content.
 *
 * @since TemplateMela 1.0
 */
do_action('templatemela_featured_posts_before');
$featured_posts = templatemela_get_featured_posts();
foreach ((array) $featured_posts as $order => $post) {
    setup_postdata($post);
    // Include the featured content template.
    get_template_part('content', 'featured-post');
}
/**
 * Fires after the TemplateMela featured content.
 *
 * @since TemplateMela 1.0
 */
do_action('templatemela_featured_posts_after');
wp_reset_postdata();
?>
  </div>
  <!-- .featured-content-inner -->
示例#2
0
/**
 * A helper conditional function that returns a boolean value.
 * @return bool Whether there are featured posts.
 */
function templatemela_has_featured_posts()
{
    return !is_paged() && (bool) templatemela_get_featured_posts();
}