ControlledChaos
8/9/2016 - 1:29 AM

Restore the title attribute in WordPress galleries.

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 );

?>

Restore Gallery Title Tags

WordPress Snippet

See this gist to restore the title attribute for single images.