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'); Try to use this j query function like this in header file
$(document).ready(function() { $("img").addClass("myimg") }); - is there a way to do this via PHP or a WP function rather than JS?manc– manc2013-08-03 09:59:20 +00:00Commented Aug 3, 2013 at 9:59
- The better way is not php or wordpress for all images.Bindiya Patoliya– Bindiya Patoliya2013-08-03 10:04:03 +00:00Commented Aug 3, 2013 at 10:04