WordPress is resizing image uploads and I do not know what else to do
-
Hi everyone, tittle says it all unfortunately.
I’ve done various fixes I’ve found on google, but for some reason whenever I upload a file (ex: a.jpg) it creates multiple files with different resolutions (500×500, 1920×1408, 200×200, 200×140, 2048×1502, 1536×1127 and 768×563). These are only visible when connecting to wp-content via ftp and these resolutions are being shown on the website (never the original).
On wordpress admin panel – options – media I have all sizes set to “0”.
On functions.php of my child theme I have the following code:
add_filter( ‘big_image_size_threshold’, ‘__return_false’ );
function disable_wp_responsive_images() {
return 1;
}
add_filter(‘max_srcset_image_width’, ‘disable_wp_responsive_images’);What am I missing or doing wrong? This is driving me nuts! I just want to show the original image exactly as I uploaded it. Thanks for reading!
The page I need help with: [log in to see the link]
- The topic ‘WordPress is resizing image uploads and I do not know what else to do’ is closed to new replies.