http://delaymania.com/201507/wordpress/wordpress-eyecatch-add/
まずfunctions.phpに下記の記述があるかどうか確認し、なければ追記しましょう。
| 1 | add_theme_support('post-thumbnails'); |
テンプレート内
content.php
<div class=”entry-content”>
の下あたりに以下のタグを入れておく
<div class="eyecatch">
<?php the_post_thumbnail(); ?>
</div>
アイキャッチをリンクで拡大させたい場合は
以下を
<div class=”entry-content”>
の下あたりに以下のタグを入れておく
<div class="eyecatch">
<?php if ( has_post_thumbnail() ) : ?>
<?php
$files = get_post_meta($post->ID, '_thumbnail_id', true);
$file = wp_get_attachment_url($files);
?>
<div class="thumbnail">
<a href="<?php echo clean_url($file); ?>" target="_blank"><?php the_post_thumbnail( 'single-post-thumbnail' ); ?></a>
</div><!-- /.thumbnail -->
<?php endif; ?>
</div>