um_post_account_update

Hook type

Action

Description

Fired on account page, after updating profile

Usage

add_action( 'um_post_account_update', 'function_name', 10 );

Examples

<?php
add_action( 'um_post_account_update', 'my_post_account_update', 10 );
function my_account_pre_update_profile() {
    // your code here
}
?>

Change Log

Since: 2.0

Source

um_post_account_update is located in includes/core/um-actions-account.php::line 291