There was an error while loading. Please reload this page.
Fires when post meta is added.
/** * Fires when post meta is added. * * @param int $meta_id * @param int $object_id * @param string $meta_key * @param mixed $meta_value */ function my_added_post_meta_callback( int $meta_id, int $object_id = null, string $meta_key = null, mixed $meta_value = null ) { // Your code here. } add_action( 'added_post_meta', 'my_added_post_meta_callback' );
int
$meta_id
$object_id
string
$meta_key
mixed
$meta_value
\do_action( 'added_post_meta', ...$meta )
← All Hooks