um_account_pre_updating_profile_array

Hook type

Filter

Description

Change update profile data before saving

Parameters

$changes

(array) Profile changes array

Usage

<?php add_filter( 'um_account_pre_updating_profile_array', 'function_name', 10, 1 ); ?>

Examples

<?php
add_filter( 'um_account_pre_updating_profile_array', 'my_account_pre_updating_profile', 10, 1 );
function my_account_pre_updating_profile( $changes ) {
    // your code here
return $changes;
}
?>

Change Log

Since: 2.0

Source

um_account_pre_updating_profile_array is located in includes/core/um-actions-account.php::line 248