Is it possible to grab just the URL for all images attached to a post?
I need to extract the URL for thumb, medium and large.
The URLS will fit into something like this within the loop:
<ul>
<li>
<a href="PATH TO MEDIUM IMAGE" original="PATH TO LARGE IMAGE">
<img src="PATH TO THUMBNAIL IMAGE"></a>
</li>
</ul>
This will be true for all images attached to the post.
This post is pretty close, but I can only get it to work for one image size (medium): http://wordpress.org/support/topic/140609?replies=43
Any ideas?
Thanks