Advertisement
Guest User

Image Alt Text

a guest
May 5th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function add_image_alt( $attachment_id ) {
  2. $image_mimes = array( 'image/jpeg', 'image/gif', 'image/png', 'image/bmp', 'image/tiff', 'image/x-icon' );
  3. $attachment_type = get_post_mime_type( $attachment_id );
  4.  
  5. if( in_array( $attachment_type, $image_mimes ) ) {
  6. $attachment_title = get_the_title( $attachment_id );
  7. update_post_meta( $attachment_id, '_wp_attachment_image_alt', sanitize_text_field( $attachment_title ) );
  8. }
  9. }
  10. add_action( 'add_attachment', 'add_image_alt' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement