Arkadaşlar nasıl yaptım bilmiyorum ama bu şekilde oldu.

functions.php

function img_responsive($content){
return str_replace('<img class="','<img class="img-responsive ',$content);
}
add_filter('the_content','img_responsive');



style.css

.img-responsive{
    height: auto; max-width: 100%;
}

img.aligncenter{
    height: auto; max-width: 100%;
}