<?php
add_action('before_delete_post', 'wps_remove_attachment_with_post', 10);
function wps_remove_attachment_with_post($post_id)
{
// We check if the global post type isn't ours and just return
global $post_type;
if ($post_type != 'my_product_post_type')
return;
$media = get_attached_media('image', $post_id);
foreach ($media as $image) {
wp_delete_attachment($image->ID, true);
}
}
?>