admin管理员组

文章数量:1122846

How can I find out who created / edited / deleted a certain user?

I got a notification email that a new user has been created but I dont have any idea who made it.

How can I find out who created / edited / deleted a certain user?

I got a notification email that a new user has been created but I dont have any idea who made it.

Share Improve this question asked Jan 30, 2013 at 2:10 user20493user20493 313 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Hook into the actions user_register, profile_update and delete_user, and inspect the current user. Use get_current_user_id() to get the acting user and use …

WP_User::get_data_by( 'id', get_current_user_id() );

… to get more data about the user creating or deleting the other user.

本文标签: Find out who created a certain user