add_action('add_attachment', 'save_exif_fields');
function save_exif_fields( $post, $attachment ) {
$array = [ 'city', 'locationname' ];
foreach ( $array as $one ) {
if ( ! empty( $attachment[ $one ] ) ) {
update_post_meta( $post[ 'ID' ], $one, $attachment[ $one ] );
} else {
delete_post_meta( $post[ 'ID' ], $one );
}
}
return $post;
}
<div style="display:none">
<img src="http://site.ru/wp-content/uploads/img1.jpg" alt="alt-img1" width="2560" height="1920" class="size-full wp-image-2385" />
<img src="http://site.ru/wp-content/uploads/img2.jpgg" alt="alt-img2" width="2560" height="1920" class="size-full wp-image-2384" />
<img src="http://site.ru/wp-content/uploads/img2.jpg" alt="alt-img3" width="2560" height="1920" class="size-full wp-image-2383" />
</div>