How can I wrap all blog posts image with

I think in your case you can do it using css by adding the height: auto; to image tags:

.c-entry-content img {
    max-width: 100%;
    height: auto;
}