What are the actions that a plugin can hook on to for processing when the user deletes a category?
Leave a Reply
You must be logged in to post a comment.
What are the actions that a plugin can hook on to for processing when the user deletes a category?
You must be logged in to post a comment.
wp_delete_category()
is a small wrapper aroundwp_delete_term()
( source ).It has number of hooks, the one that comes right before delete is:
Hooks after delete:
There are also few earlier hooks that deal with remapping children terms.