apply_filters( 'pre_move_uploaded_file', string $move_new_file , string $file , string $new_file , string $type )
Filters whether to short-circuit moving the uploaded file after passing all checks.
Description
If a non-null value is passed to the filter, moving the file and any related error reporting will be completely skipped.
Parameters
- $move_new_file
-
If null (default) move the file after the upload.
- $file
-
An array of data for a single file.
- $new_file
-
Filename of the newly-uploaded file.
- $type
-
File type.
Source
Changelog
Version | Description |
---|---|
WP-4.9.0 | Introduced. |