Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

Add a Featured Image to Single Post Template #37

Merged
merged 1 commit into from
May 4, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion single.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,16 @@
</header>
<?php do_action('foundationPress_post_before_entry_content'); ?>
<div class="entry-content">
<?php the_content(); ?>

<?php if ( has_post_thumbnail() ): ?>
<div class="row">
<div class="column">
<?php the_post_thumbnail('', array('class' => 'th')); ?>
</div>
</div>
<?php endif; ?>

<?php the_content(); ?>
</div>
<footer>
<?php wp_link_pages(array('before' => '<nav id="page-nav"><p>' . __('Pages:', 'FoundationPress'), 'after' => '</p></nav>' )); ?>
Expand Down