adding featured image to single.php
authorAnthony Talarico <talarico@gaslightmedia.com>
Fri, 4 Dec 2015 16:32:04 +0000 (11:32 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Fri, 4 Dec 2015 16:32:04 +0000 (11:32 -0500)
single.php

index dfe1349..91aac42 100644 (file)
@@ -14,6 +14,9 @@
                             <div class="small-12 columns">
                                 <article id="<?php the_ID()?>" <?php post_class()?>>
                                     <h1><?php the_title();?></h1>
+                                    <?php if ( has_post_thumbnail() ):?>
+                                    <div class="featured-image-wrap"><?php the_post_thumbnail("large"); ?></div>
+                                    <?php endif; ?>
                                     <?php echo the_content(); ?>
                                     <footer class="entry-meta small-12 medium-6 medium-push-3 center">
                                         <?php $post_categories = wp_get_post_categories( get_the_ID() );