acf/updated_field
Fires after a field has been updated, and the field cache has been cleaned.
Використання
add_action( 'acf/updated_field', 'wp_kama_acf_updated_field_action' );
/**
 * Function for `acf/updated_field` action-hook.
 *
 * @param array $field The field array.
 *
 * @return void
 */
function wp_kama_acf_updated_field_action( $field ){
	// action...
}-  $field
 (масив)
- field array.
список змін
| З версії 5.7.10 | Введено. | 
Де викликається хук
 acf/updated_field
 acf/includes/acf-field-functions.php 1031
do_action( 'acf/updated_field', $field );
Де використовується хук в Advanced Custom Fields
Використання не знайдено.
