acf/delete_value
The Advanced Custom Fields acf delete value hook.
Description
Parameters (3)
- 0. $array (callback) =>
array($this, 'delete_value')
- The array.
- 1. $int (int) =>
5
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'acf/delete_value', $array, $int, $int );
- The following example is for adding a hook callback.
- // define the acf/delete_value callback
- function action_acf_delete_value( $array, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'acf/delete_value', 'action_acf_delete_value', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'acf/delete_value', 'action_acf_delete_value', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /core/fields/_functions.php
- add_action('acf/delete_value', array($this, 'delete_value'), 5, 2);