admin管理员组

文章数量:1389869

I am using profile_updatehook for user update but it is working only for my own profile. I need hook which works for all users including my own profile. Which hook I should use for this purpose ? Here how I am using this in my theme's functions.php.

add_action( 'profile_update', 'my_profile_update', 10, 2 );

function my_profile_update( $user_id, $old_user_data ) {
    if(is_admin()){

    }
}

本文标签: User update hook