דלג לתוכן
function remove_decoding_async_from_images($content) {
return str_replace(' decoding="async"', '', $content);
}
add_filter('the_content', 'remove_decoding_async_from_images');
add_filter('post_thumbnail_html', 'remove_decoding_async_from_images');
add_filter('widget_text', 'remove_decoding_async_from_images');
add_filter('widget_text_content', 'remove_decoding_async_from_images');