You appear to be a bot. Output may be restricted
Description
Determines if a product is a bundle
Usage
$bool = edd_is_bundled_product( $download_id );
Parameters
- $download_id
- ( int ) optional – Download ID
Returns
bool
Source
File name: easy-digital-downloads/includes/download-functions.php
Lines:
1 to 4 of 4
function edd_is_bundled_product( $download_id = 0 ) { $download = new EDD_Download( $download_id ); return $download->is_bundled_download(); }