updated_<meta_type>_meta
Fires immediately after updating metadata of a specific type.
Description
Parameters (3)
- 0. $callable (unknown)
- The callable.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
4
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'updated_{$meta_type}_meta', $callable, $int, $int );
- The following example is for adding a hook callback.
- // define the updated_<meta_type>_meta callback
- function action_updated_meta_type_meta( $callable, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "updated_{$meta_type}_meta", 'action_updated_meta_type_meta', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "updated_{$meta_type}_meta", 'action_updated_meta_type_meta', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /sync/class.jetpack-sync-module.php
- add_action( "updated_{$meta_type}_meta", $callable, 10, 4 );