-1
I am trying to put images from my blog that is in Wordpress on my html site
My code
<?php while (have_posts()): the_post(); ?>
<div class="col-md-4 ">
<div class="box-blog">
<img src="" >
<h4 class="hov"><?php the_title(); ?></h4>
<span><i class="fa"></i> <?php the_time("d/m/Y"); ?></span>
<br><br>
<article>
<?php the_excerpt(); ?>
</article>
<div align="center">
<a target="__blank" href="<?php the_permalink(); ?>"><button class="btn btn-primary">Leia Mais</button></a>
</div>
</div>
</div>
<?php endwhile;?>
I already have the whole body just missing the image but I do not know how to put it please help me.