When I place a photo or image in a page/post WP automatically applies a link to the image, and when a mouse goes over the image it indicates that it is a link, and if you click it, it just opens a page with the image in it.
Since I place the images at their largest size, clicking them does not open a page with a bigger version, etc. So it seems pointless. A client asked me to make the images "not-linked" which I did by simple removing the
Is there any way around this?
Thanks!
<a href="LINK_TO_MAIN_FILE"><img src="LINK_TO_MAIN_FILE" /></a>. After you remove the anchor tag, it will be like<img src="LINK_TO_MAIN_FILE" />! Isn't that you want? – HungryCoder Jun 18 '12 at 17:17