wzio_is_excluded
Filter whether a file is excluded from conversion.
Type: filter
Since: 1.0.0
Source: includes/class-converter.php line 535
Parameters
| Type | Name | Description |
|---|---|---|
bool |
$excluded |
Whether the file is excluded. |
string |
$path |
Absolute file path. |
Usage
add_filter( 'wzio_is_excluded', function($excluded, $path) {
// ...
return $excluded;
} );