mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
15 lines
462 B
Text
15 lines
462 B
Text
add_filter(
|
|
'wp_content_img_tag',
|
|
static function ( $image ) {
|
|
return str_replace( ' sizes="auto, ', ' sizes="', $image );
|
|
}
|
|
);
|
|
add_filter(
|
|
'wp_get_attachment_image_attributes',
|
|
static function ( $attr ) {
|
|
if ( isset( $attr['sizes'] ) ) {
|
|
$attr['sizes'] = preg_replace( '/^auto, /', '', $attr['sizes'] );
|
|
}
|
|
return $attr;
|
|
}
|
|
);
|