Tarek
Tarek

Reputation: 115

How can i change image author in wordpress?

Is there any function to change the image Author(Uploaded By) in WordPress library?

enter image description here

Upvotes: 2

Views: 641

Answers (1)

Vuk Vukovic
Vuk Vukovic

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

Related Questions