Add this code to functions.php
(use custom child theme or plugin FunctionsPHP):
function themeslug_set_thumbnail_attr( $attr ) { $attr['class'] .= ' my new classes'; return $attr; } add_filter( 'basic_singular_thumbnail_attr', 'themeslug_set_thumbnail_attr' );