wpseek.com
A WordPress-centric search engine for devs and theme authors



pre_wp_unique_filename_file_list › WordPress Filter Hooks

Since5.5.0
Deprecatedn/a
apply_filters( 'pre_wp_unique_filename_file_list', null, $dir, $filename )
Parameters: (3)
  • () files The list of files to use for filename comparisons. Default null (to retrieve the list from the filesystem).
    Required: Yes
  • () dir The directory for the new file.
    Required: Yes
  • () filename The proposed filename for the new file.
    Required: Yes
Defined at:
Codex:

Filters the file list used for calculating a unique filename for a newly added file.

Returning an array from the filter will effectively short-circuit retrieval from the filesystem and return the passed value instead.




Source

$files = apply_filters( 'pre_wp_unique_filename_file_list', null, $dir, $filename );