I have a php include that grabs the author image, I would like to wrap the post text around this image. What's the correct way to do it?
Thanks
Code:
<div class="entry-content"> <?php the_author_image();?> <?php the_content(); ?>

Comment