How can I customize the upload error message in WordPress?
This is untested, but I think you can just define wp_handle_upload_error in your functions.php file and return custom error messages. If you look at where that function is defined in that file, if ( ! function_exists( ‘wp_handle_upload_error’ ) ) { function wp_handle_upload_error( &$file, $message ) { return array( ‘error’=>$message ); } } You can see … Read more