Restore the title attribute in WordPress galleries.
<?php
function ccd_restore_title_to_gallery( $content, $id ) {
$thumb_title = get_the_title($id);
return str_replace( '<a', '<a title="' . esc_attr( $thumb_title ) . '" ', $content );
}
add_filter( 'wp_get_attachment_link', 'ccd_restore_title_to_gallery', 10, 4 );
?>