How to automatically convert images to WebP on WordPress?

Doing this in vanilla WordPress using hooks requires code that hasn’t been released yet, specifically: https://core.trac.wordpress.org/changeset/53751 https://core.trac.wordpress.org/ticket/55443 That Trac ticket adds new filters which are available in WordPress 6.1. Note that if your server cannot process webp images for resizing then webp will not work for you even with these filters. You will need to … Read more

How to make media URLs Unique

You could certainly change the upload folder structure using an upload_dir filter hook, but I think a more direct solution might be to append some other text to the end of the file name. I think an easy unique string could just be the current timestamp, and encoding it in hexadecimal would make it a … Read more

Help with WordPress slider

I think you should use: get_template_part() So the only thing you have to do is put the get_template_part inside the header.php and add where you want to load it. get_template_part( ‘slider’ );

Cache of site on browser

If you just want to clean the cache (using Chrome and Windows) you can: Open Developer Tools – F12 Right click on the reload button Choose an option from the dropdown menu – probably the last – “Empty cache and hard reload”

Blurry Images WordPress 5.8.1

Not sure why @fuxia deleted my first answer, but I may be able to help. My original answer was to say that I was experiencing the same issue. I have discovered the issue and perhaps it will help you. In the Jetpack plugin there are a series of settings under the Performance tab: Enable site … Read more