Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function get_image_alt_text($image_url) {
  2.  
  3. if ( ! $image_url )
  4. return '';
  5.  
  6. if ( '/' === $image_url[0] )
  7. $post_id = attachment_url_to_postid(home_url() . $image_url);
  8. else
  9. $post_id = attachment_url_to_postid($image_url);
  10.  
  11. $alt_text = get_post_meta($post_id, '_wp_attachment_image_alt', true);
  12. if ( '' === $alt_text )
  13. $alt_text = get_the_title($post_id);
  14.  
  15. return $alt_text;
  16.  
  17. }