Ehsan
Ehsan

Reputation: 2285

How to retrieve pure URL of images that attachs in posts?

I want to get pure url of images in post's attachments. when wp_get_attachment_image give me codes like these <img src="" ... height="" width="" title="" alt="" />

Upvotes: 0

Views: 40

Answers (1)

Mark
Mark

Reputation: 3035

You can use wp_get_attachment_image_src instead. It returns an array with the src, height and width attributes.

Upvotes: 2

Related Questions