Simple question with a difficult answer, assuming there is one.
On my single.php I have this for my posts output.
<?php the_post_thumbnail( array(350, 250) ); ?><?php the_content(); ?>
The problem here is that when the code renders you get the IMG line right in front of the first P tag for the_content. For example..
<img src="" /><p>text output for the_content..</p>
Now what I'd like is for the 'Default Image' to be shown just inside the first P tag like this.
<p><img src="" />text output for the_content..</p>
Anybody have any ideas about how to do that?