twentytwentyone主题恼人地将这些内联样式添加到图像中
为了避免问题,我做了以下操作
function remove_inline_style_from_image( $attr ) {
unset( $attr[\'style\'] );
return $attr;
}
add_filter( \'wp_get_attachment_image_attributes\', \'remove_inline_style_from_image\', 10, 1 );
$thumbnail = get_the_post_thumbnail( $id );
remove_filter( \'wp_get_attachment_image_attributes\', \'remove_inline_style_from_image\' );
如果要从所有后续图像中删除内联样式,只需在末尾去掉remove\\u过滤器行即可。