How to add automatic class in image for wordpress post

后端 未结 12 1511
时光说笑
时光说笑 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:34

    This approach is better: https://wordpress.stackexchange.com/questions/108831/add-css-class-to-every-image

    function add_image_class($class){
        $class .= ' additional-class';
        return $class;
    }
    add_filter('get_image_tag_class','add_image_class');
    

    Only caveat is that it adds the class within the edit pane when you insert new images and doesn't affect pre existing ones.

提交回复
热议问题