如何在wordpress中更改图像作者?

时间:2017-10-28 23:15:54

标签: php wordpress

是否有任何功能可以更改WordPress库中的图像作者(上载者)?

enter image description here

1 个答案:

答案 0 :(得分:1)

您应该使用wp_update_post()

$my_post = array(
    'ID' => $post_id,
    'post_author' => $user_id,
);
wp_update_post( $my_post );