wp_delete_file

wp_delete_file

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_delete_file') is found 1 times:

  • /wp-includes/functions.php line 7680
    7676
    7677
    7678
    7679
    7680
    7681
    7682
    7683
    7684
    7685
    7686
    * @since 2.1.0
     *
     * @param string $file Path to the file to delete.
     */
    $delete = apply_filters( 'wp_delete_file', $file );
     
    if ( ! empty( $delete ) ) {
        return @unlink( $delete );
    }
     
    return false;