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
.img-responsive
You can use jquery code on the header.php file of your theme.
jQuery(function() { jQuery(img).addClass('img-responsive'); });