RestroPress

⌘K
  1. Home
  2. Docs
  3. RestroPress
  4. Developer Docs
  5. Functions
  6. rpress_get_variable_prices()

rpress_get_variable_prices()

This function will return an array of all of the variable prices set for the provided fooditem ID.

$prices = rpress_get_variable_prices( $download_id );
if( $prices ) {
	foreach( $prices as $price_id => $price ) {
		// $price['name'] is the name of the price
		// $price['amount'] is the amount of the price
	}
}

How can we help?