How to get meta value in wp_attachment_metadata
There are two methods: get_post_meta() $attachment_meta = get_post_meta( $post->ID, ‘_wp_attachment_meta’, true ); Will return an array(): $width = $attachment_meta[‘width’]; That true as the third parameter is especially important in this case, since the metadata being queried is a serialized array. You need to return it as single, or you’re going to get an array returned, … Read more