Get the WordPress attachment image url

Use wp_get_attachment_image_src

https://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src

This:

wp_get_attachment_image_src( $attachment->ID, 'full' );

should return an array with the following elements

[0] => url
[1] => width
[2] => height
[3] => boolean: true if $url is a resized image, false if it is the original or if no

Leave a Comment