How to do an event when any user updates their profile?
It seems as if the hook personal_options_update might be what you’re looking for. add_action( ‘personal_options_update’, ‘my_custom_func’ ); function my_custom_func( $user_id /* if you need that */ ) { … }