I want to add a CSS class “myimg” to every image both inside and outside of a post. What is the best way to approach this?

2 Answers
2

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

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *