WordPressでアイキャッチ画像がある時は表示して、なかった場合は代替画像を表示させる方法

WordPress

画像のディレクトリは適宜変えます。

<?php if (has_post_thumbnail()) : ?>
 <?php the_post_thumbnail(); ?>
<?php else: ?>
 <img alt=”” src=”<?php echo get_template_directory_uri(); ?>/images/ファイル名” />
<?php endif; ?>