How to add automatic class in image for wordpress post

后端 未结 12 1510
时光说笑
时光说笑 2020-12-02 13:53

I want to make a responsive theme with Bootstrap 3. However, I need to automatically add the CSS class .img-responsive to every post image because I need the i

12条回答
  •  囚心锁ツ
    2020-12-02 14:37

    Not quite sure how good this answer is performance wise but it works. Just put this in functions.php.

    function img_responsive($content){
        return str_replace('

    Please note that you need the space after class="img-responsive so it doesn't merge with other classes.

提交回复
热议问题