how to display post content without post image?

you can add a filter to the_content hook to strip the images

something like:

add_filter('the_content', 'strip_images',2);

function strip_images($content){
   return preg_replace('/<img[^>]+./','',$content);
}

Leave a Comment