apply_filters( 'cloudinary_max_files_import', $max_files ) → {int}
    Filter the maximum number of files that can be imported from Cloudinary.
    Parameters:
| Name | Type | Description | 
|---|---|---|
$max_files | 
            
            int | The maximum number of files that can be imported from Cloudinary. | 
- Since:
 - 3.1.3
 
- Default Value:
 - 20
 
- Source:
 
Returns:
- Type
 - int
 
Example
<?php
// Filter Cloudinary max files per import.
add_filter(
   'cloudinary_max_files_import',
   static function() {
       return 100;
   }
);