I’m writing a plugin that sends notifications on various post events.
One of the notifications should be sent when a post is assigned to a different author.
How can I know that the post author was changed ?

1 Answer
1

Best Hook for that would be wp_insert_post_data

function wpse44358_filter_handler( $data , $postarr ){ 
    //do your stuff 
    //if ($data['post_author'] == ...
    return data; // make sure you return something 
}

add_filter( 'wp_insert_post_data' , 'wpse44358_filter_handler' , '99', 2 );

Leave a Reply

Your email address will not be published. Required fields are marked *