Aunque existe un plugin hecho aposta para recuperar esta función, es mucho mejor no recargar la instalación de WordPress con plugins que realicen tareas tan simples como esta.
Hace tiempo que venía usando este código para añadir el TITLE a las imágenes, pero desde hace poco que no funciona ya, imagino que desde alguna nueva actualización de WordPress:
function image_tag($html, $id, $alt, $title) {
return preg_replace(array(
'/alt=""/i'
),
array(
'alt="' . $title . '"'
),
$html);
}
add_filter('get_image_tag', 'image_tag', 0, 4);
function image_tag_class($class, $id, $align, $size) {
return ;
}
add_filter('get_image_tag_class', 'image_tag_class', 0, 4);
Al final he encontrado otros dos códigos que funcionan bien. Si necesitáis añadir el TITLE a las imágenes, podéis escoger alguna de estas dos opciones y la tendréis que añadir en el archivo FUNCTIONS.PHP de vuestra plantilla. Lo podéis agregar al final mismo, antes de que se cierre el archivo con ?>.
OPCIÓN 1
function lcb_restore_image_title( $html, $id ) {
$attachment = get_post($id);
$mytitle = $attachment->post_title;
return str_replace('<img', '<img title="' . $mytitle . '"' , $html);
}
add_filter( 'media_send_to_editor', 'lcb_restore_image_title', 15, 2 );
OPCIÓN 2
function send_attachment_with_title($html, $id, $attachment) {
$title = get_the_title($id);
preg_match("/<a[^>]*>/", $html, $matches);
if(!isset($matches[0])) {
$html = str_replace("<img ", "<img title=\"$title\" ", $html);
return $html;
}
$html = str_replace("<a ", "<a title=\"$title\" ", $html);
return $html;
}
add_filter('image_send_to_editor', 'send_attachment_with_title', 10, 3);
De esta manera, nos quedará algo así (si empleamos la opción 1):