SO网友:S..
这对我有用。
function remove_width_and_height_attribute( $html ) {
return preg_replace( \'/(height|width)="\\d*"\\s/\', "", $html );
}
然后改变
wp_get_attachment_image_src( $attachment_id, \'full\' );
至
remove_width_and_height_attribute(wp_get_attachment_image_src( $attachment_id, \'full\' ));