Temanızda resimlerin görünmesini istediğiniz yere aşağıdaki kodu koymalısınız.
<?php
if ( has_post_thumbnail() ) {
// Eğer bir resim atanmışsa bu resmi göster
the_post_thumbnail();
} else {
// Eğer bir resim atanmamışsa standart bir resim göster
<img src="resim.jpg" alt="resim" />
}
?>