wp_delete_file_from_directory()
Deletes a file if its path is within the given directory.
Uses: wp_delete_file()
Used By: wp_delete_attachment_files()
No Hooks.
Return
true|false
. True on success, false on failure.
Usage
wp_delete_file_from_directory( $file, $directory );
- $file(string) (required)
- Absolute path to the file to delete.
- $directory(string) (required)
- Absolute path to a directory.
Changelog
Since 4.9.7 | Introduced. |