标签: php wordpress
是否有任何功能可以更改WordPress库中的图像作者(上载者)?
答案 0 :(得分:1)
您应该使用wp_update_post()。
wp_update_post()
$my_post = array( 'ID' => $post_id, 'post_author' => $user_id, ); wp_update_post( $my_post );