mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
253 B
Text
5 lines
253 B
Text
function remove_data_src_attribute( $params, $attachment_id, $image_size, $main_image ) {
|
|
unset( $params['data-src'] );
|
|
return $params;
|
|
}
|
|
add_filter('woocommerce_gallery_image_html_attachment_image_params', 'remove_data_src_attribute', 10, 4 );
|