您可以尝试此筛选器
add_filter(\'wp_get_attachment_image_attributes\', \'my_img_title\', 10, 2);
function my_img_title($attr, $attachment = null){
$attr[\'title\'] = get_post($attachment->ID)->post_title;
return $attr;
}
它应该在img标记中提供额外的title属性。
您还可以使用“post\\u thumbnail\\u html”过滤器编辑html输出。
附言:这里有一个类似的问题:
Display info from custom fields in all images' HTML