Hi I would like to perform specific database action when saving a post and a tag has been added, deleted or modified
the following action hooks exist bu can't doc for them
add_action('added_post_meta', array(&$this, 'post_meta_update'), 10, 4);
add_action('updated_post_meta', array(&$this, 'post_meta_update'), 10, 4);
add_action('deleted_post_meta', array(&$this, 'post_meta_update'), 10, 4);
and I would love to find out how to perform the same hooks for tag modifications , any idea ?
Thanks