Bring Your Business to Life › Support › Image Store › How disable resize generate thumbs? › Reply To: How disable resize generate thumbs?
April 26, 2015 at 9:10 pm #280353
Keymaster
Add the following code to a plugin or theme.
function my_custom_function_name( $data ){
remove_filter( 'ims_generate_image_metadata', $metadata, $attachment_id, $path );
return $data;
}
add_filter( 'wp_update_attachment_metadata', 'my_custom_function_name', 100 );