<html lang="it-it" dir="ltr"><head></head><body># edd_get_variable_prices()

 Questa funzione restituirà un array di tutti i prezzi variabili impostati per l'ID del download fornito.

```
$prices = edd_get_variable_prices( $download_id );
if( $prices ) {
	foreach( $prices as $price_id =&gt; $price ) {
		// $price['name'] è il nome del prezzo
		// $price['amount'] è l'importo del prezzo
	}
}<br><br>
```</body></html>