Disable Scaled Image Size
-
Hi, please add this size to the plugin settings
The code I used:- Disable Scaled Image Size
/ add_filter(‘big_image_size_threshold’, ‘__return_false’); / =================================================================== / /* - Disable Other Image Sizes
*/
function shapeSpace_disable_other_image_sizes()
{
remove_image_size(‘post-thumbnail’); // disable images added via set_post_thumbnail_size()
remove_image_size(‘another-size’); // disable any other added image sizes
}add_action(‘init’, ‘shapeSpace_disable_other_image_sizes’);
- Disable Scaled Image Size
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Disable Scaled Image Size’ is closed to new replies.