Why wp_update_post() does not update GUID?
Trying to update GUID on a attachment using the wp_update_post() function but its not updating GUID nor its throwing any error.
Example code:
$post = [
    'ID'   = 45,
    'guid' = 'https://example.com/foo.png'
];
    
wp_update_post($post);
Topic wp-update-post Wordpress
Category Web