// Replace the title of img tag with image caption
function wpdocs_filter_gallery_img_atts( $atts, $attachment ) {
$attachment = get_post( $attachment->ID );
if ( $caption = $attachment->post_excerpt) {
$atts[\'title\'] = $caption;
}
return $atts;
}
add_filter( \'wp_get_attachment_image_attributes\', \'wpdocs_filter_gallery_img_atts\', 10, 2 )
此功能适用于我的本地主机,但有些功能不适用于实时站点