Reputation: 115
Is there any function to change the image Author(Uploaded By) in WordPress library?
Upvotes: 2
Views: 641
Reputation: 118
You should use wp_update_post()
.
$my_post = array(
'ID' => $post_id,
'post_author' => $user_id,
);
wp_update_post( $my_post );
Upvotes: 2