Created
February 11, 2015 00:18
-
-
Save bhubbard/8c912119e83576210070 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Get our Featured Content | |
$featured = UNIQUETHEMENAME_get_featured_content(); | |
// If we have no posts, our work is done here | |
if ( empty( $featured ) ) | |
return; | |
?> | |
<h3>Featured</h3> | |
<?php | |
foreach ( $featured as $post ) : setup_postdata( $post ); ?> | |
<div class="featured-post"> | |
<?php the_post_thumbnail('thumbnail'); ?> | |
<h4><?php the_title(); ?></h4> | |
<?php the_excerpt(); ?> | |
</div><!-- .slide --> | |
<?php endforeach; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment