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
function add_image_class($class){
$class .= ' additional-class';
return $class;
}
add_filter('get_image_tag_class','add_image_class');