since WP 5.5, I had to add this function to my theme to prevent rendering issues in an image slider due to automatic lazy loading in WP:
add_filter( 'wp_lazy_loading_enabled', '__return_false' );
This was working quite well since it was removing the automatic parameter "loading=lazy" on images elements.
Yesterday, after upgrading to WP 5.9, I'm facing the same issue again with my slider and I see that the "loading=lazy" parameter is back on all images!
How can I fix that? Thanks