的第二个参数the_post_thumbnail
是$attr
, 您可以向其中添加类。需要注意的是,您将覆盖默认类,因此您还需要将它们添加到中。默认值为attachment-$size
, 这就是我添加的原因attachment-post-thumbnail
在我的例子中。
the_post_thumbnail( \'post-thumbnail\', array(
\'class\' => \'attachment-post-thumbnail my-custom-class\'
) );