You appear to be a bot. Output may be restricted
Description
Retrieve a specific fee
Usage
$array|bool = EDD_Fees::get_fee( $id );
Parameters
- $id
- ( string ) optional – ID of the fee to get
Returns
array|bool The fee array when available, false otherwise
Source
File name: easy-digital-downloads/includes/class-edd-fees.php
Lines:
1 to 8 of 8
public function get_fee( $id = '' ) { $fees = $this->get_fees( 'all' ); if ( ! isset( $fees[ $id ] ) ) return false; return $fees[ $id ]; }