When a media (image) is uploaded and the subsequent images are created (all the different sizes), I would like to perform a few actions. It is simple and I basically need only the new attachment ID, that would be enough.

Same during deletion: before or after deletion, I need to know which attachment ID is concerned.

Thanks for your help 🙂

1
1

i guess you are looking for this

add_attachment

and

delete_attachment

example:

add_action('add_attachment', 'attachment_manipulation');
function attachment_manipulation($id)
{
  if(wp_attachment_is_image($id)){
    //do your own tasks
  }

}

Leave a Reply

Your email address will not be published. Required fields are marked *