Imagem apresentada como imagem de cabeçalho ou imagem de postagem

adicione abaixo no arquivo de função


addthemesupport( 'post-thumbnails' );
setpostthumbnail_size( 624, 9999 ); // will set image width 624px and Unlimited height, soft crop
</code></pre>

add below in your template file


<?php
if ( haspostthumbnail() ) {
// the current post has a thumbnail
thepostthumbnail();
} else {?>
<img src="<?php echo gettemplatedirectory_uri(); ?>/images/place-hoder-img.jpg" class="">
<?php
}
?>
</code></pre>