I'm inserting an image upload into the body field of a form via post content template, which outputs this into the template:
{Image::7:thumbnail:center}
However, I need to add a custom id="" tag into the html for that image that is posted.
Right now, this is what is generated into the post content:
<img class="size-thumbnail aligncenter wp-image-285" title="jcrew_grey_tweed_sportcoat" src="http://www.styleroast.com/wp-content/uploads/2010/11/jcrew_grey_tweed_sportcoat3.jpg" alt="jcrew_grey_tweed_sportcoat" width="500" height="500" />
How can I make it this:
<img id="img-POSTIDHERE" class="size-thumbnail aligncenter wp-image-285" title="jcrew_grey_tweed_sportcoat" src="http://www.styleroast.com/wp-content/uploads/2010/11/jcrew_grey_tweed_sportcoat3.jpg" alt="jcrew_grey_tweed_sportcoat" width="500" height="500" />
Thanks!