1 Snippets
<10 Favourites
<10 Downloads

Disable Auto-generated Image Sizes

When we upload any media, WordPress automatically generates other extra sizes of it. It may eat…

Disable Wordpress image compression

// Disable image compression add_filter( 'jpeg_quality', 'smashing_jpeg_quality' ); function smashing_jpeg_quality() { return 100; } // Disable…

<10