ive found this
<?php
if (is_home() || is_front_page()){
add_filter('the_content','wpi_image_content_filter',11);
}
function wpi_image_content_filter($content){
return preg_replace("/<img[^>]+\>/i", "", $content);
}
?>
from this post
It works but it also removed all images from the post it’s self.