Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function wpdocs_filter_gallery_img_atts( $atts, $attachment ) {
  2. $attachment = get_post( $attachment->ID );
  3. if ( $caption = $attachment->post_excerpt) {
  4. $atts['title'] = $caption;
  5. }
  6. return $atts;
  7. }
  8. add_filter( 'wp_get_attachment_image_attributes', 'wpdocs_filter_gallery_img_atts', 10, 2 )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement