You appear to be a bot. Output may be restricted
Description
Gets all download files for a product
Can retrieve files specific to price ID
Usage
$array = edd_get_download_files( $download_id, $variable_price_id );
Parameters
- $download_id
- ( int ) optional – Download ID
- $variable_price_id
- ( int ) optional – Variable pricing option ID
Returns
array $files Download files
Source
File name: easy-digital-downloads/includes/download-functions.php
Lines:
1 to 4 of 4
function edd_get_download_files( $download_id = 0, $variable_price_id = null ) { $download = new EDD_Download( $download_id ); return $download->get_files( $variable_price_id ); }