That’s not going to work, instead just use wp_get_attachment_image_src
, it takes a size parameter.
// get the $attachment_id
$attach_stuff = wp_get_attachment_image_src( $attachment_id, 'full');
var_dump($attach_stuff);
You will be returned an array fo values to work with:
[0] => url
[1] => width
[2] => height
[3] => boolean: true if $url is a resized image, false if it is the original.
Also turn on debugging.
Related Posts:
- How To Retrieve An Image Attachment’s Alt Text?
- getting attachement images src and add classes
- Check if post has attachments (not image)
- Validate alt text for attachments?
- Applying automatic link class to images embedded to posts
- get post attachments of a particular size
- Change image link: wp_get_attachment_link
- Making images from single.php pointing to an attachment .php template
- wp_get_attachment_image_src always returns false
- Exact image sizes
- Get the size (size in Kb or MB) of an featured image?
- query attachment images … if no attachments -> get attachments of parent page?
- Edit default image attachment size
- Change code to display image attachment page
- Attachment 0×0 size error [closed]
- Add image attachment to post via coding?
- Removing width and height attributes from wp-get-attachment
- Get post attachment images dimension and use in embed code
- use wp_get_attachment_image() to show attachments
- Adding width and height to wp_get_attachment_image_src
- Get the bare URL for an attachment
- Display attachment resolution size
- How to check if there is image title, caption, description?
- How to remove attachments size attribute [duplicate]
- How to redirect ‘file url’ to ‘post url’ i.e. in attachment.php
- Check what attached image size is used
- How do I get all attachments that are used in the current post, not just the children?
- Clean up images, delete unused image sizes attached to a post type
- Get title of post image is attached to
- Correct attachment size
- Post Gallery list attachments except the one used as post thumbnail
- Get image attachment to a post outside the loop?
- How do I intercept and modify the functionality of wp_get_attachment_image()?
- Get Attachment Image Class by attachment id
- Possible to add “Even/Odd Classes” to image attachments via wp_get_attachment_image?
- changing the default picture size link url
- Get an image from the media library. Struggling with the code?
- How to view exact image dimensions of a media in Admin view?
- Filter not applied to all image sizes
- wp_get_attachment_image_src calling wrong location
- Get attachment URL from attachment Link in WordPress
- Display setting ‘size’ not available in image settings modal
- Hide Image Container if No Image Attachments
- Incomplete attachment page
- How to retrieve “custom url” from image attachment in wordpress
- Retreive tags from attached post for media on page
- list of attachments: wp_get_attachment_link works, wp_get_attachment_image does not
- What is the most efficient way to retrieve a group of image URL’s from different attachment ID’s of a specific crop size?
- get_image_tag filter not working
- Change attachment inside the_content using filters
- Get the first image from post content (eg.: hotlinked images)
- How can I bulk delete media and attachments using WP-CLI?
- Disable image attachment links
- Changing attachment urls?
- Add custom class to attachment in media library grid mode
- How can I UN-attach media from a post?
- Theme Customiser Image Control
- How to get attachments for a specific post type?
- Associate an existing image with a post
- How to remove title attribute from gallery links and images
- Make individual attachments private?
- Get the attachment URL on single.php
- How to upload image without post ID using the new media uploader?
- How can I get a different image size, if all I have is the link?
- How to add a rel attribute to images that contains their categories?
- How to count media attachments?
- How to add attachment without uploading?
- How to change ID of an attachment in wp_posts and its related tables correctly?
- Reorder “menu order” of attachments to another predefined order
- How To Grab All Type Of Attachments, But Images?
- Change filename during upload
- List Post Attachments – Remove Image Thumbnails
- How do i add LIGHTBOX to Attachments?
- How to specify width and height in the_content for image attachments
- delete image attachments of a custom post type except featured image
- Import Attachments – not attaching to post_parent
- Pull images from the gallery
- How to allow empty title for attachments?
- One picture belonging different galleries?
- Gutenberg Block: Image resolution
- Attach a external file as attachement using wp_mail
- Retrieving post meta array (attachment)
- WordPress Attachments with old images
- Search by Attachment ID
- How can i catch (with get_posts) attachment file (pdf, images) from a post when i have only inserted it from media library and it isn’t upload for it?
- Remove attachment from database
- How to get the next and previous image title from attachment or gallery?
- Display Audio Attachment URL
- Output posts attached images as thumbnails linked to full-size with lightbox class
- Custom image size not displaying with wp_get_attachment_image()
- Programmatically Altering Gallery Link and image size?
- Get list of posts from attachment
- File was uploaded, but it is not shown on media section of the dashboard
- Restricted Attachments/Change Attachment Upload Location
- After I upload a file to library its name converted to dashes
- How to show post attachment image
- WordPress Attachments vs Post Meta
- open image after clicking on single.php with different stylesheet in wordpress
- How do I get link URL (not file URL or attachment URL) of an attached image [duplicate]
- Attachment page custom title?