Automatic image conversion to HEIF breaks Gallery on Safari

This is a known issue. A fix is set to be included in release 6.7.1: Targeted Fixes […] The following are bugs that should be included if ready, but as understood now are not affecting as many people or are less problematic: […] Using the Upload button in image-based blocks in Safari unexpectedly converts images … Read more

WordPress MediaElement audio player won’t seek and resets back to the start when files are locally hosted

Most likely the server is not handling byte range requests to support seek. Test if you get a 206 response from e.g: curl https://example.com/test.ogg -i -H “Range: bytes=0-1023″ Try (temporary) setting the preload=”auto” to your shortcodes to fully download the audio on page loads. See more here: How to test: https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests#requesting_a_specific_range_from_a_server Server ogg media config … Read more

Add custom css class to wp-list-table row for Media Screen

Using CSS Here is an example: .wp-list-table.media tr:has(.image-icon img[src$=\.webp]) { background-color: orange; } to target all rows in the media list table that matches the image icon source with a .webp file-ending. The secret ingredients in the CSS sauce above are: the :has() relational pseudo class, that enables us to target the parent of specific … 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”