Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $meta = wp_get_attachment_metadata($imageid);
  2. if( array_key_exists("full", $meta["sizes"]) ) {
  3. $imagepath = wp_get_attachment_image_src($imageid,'full')
  4. } else {
  5. // Fallback to the original file name
  6. if( array_key_exists("file", $meta) )
  7. $imagepath = 'wp-content/uploads/' . $meta["file"];
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement