Câu trả lời:
Không có móc đặc biệt để thay đổi tác giả.
Nhưng bạn có thể đạt được nó bằng cách sử dụng post_updated
hook.
Thí dụ:
add_action('post_updated', 'prefix_on_update_author', 10, 3);
function prefix_on_update_author($post_ID, $post_after, $post_before)
{
if ($post_after->post_author != $post_before->post_author) {
// author has been changed
// you can add your own hook here or write your code
}
}
Dưới đây là tài liệu tham khảo codex.