WC_Product_Variable::get_variation_prices( bool $for_display = false )

Get an array of all sale and regular prices from all variations. This is used for example when displaying the price range at variable product level or seeing if the variable product is on sale.


Description Description


Parameters Parameters

$for_display

(Optional) If true, prices will be adapted for display based on the woocommerce_tax_display_shop setting (including or excluding taxes).

Default value: false


Top ↑

Return Return

(array) Array of RAW prices, regular prices, and sale prices with keys set to variation ID.


Top ↑

Source Source

File: includes/class-wc-product-variable.php

	public function get_variation_prices( $for_display = false ) {
		$prices = $this->data_store->read_price_data( $this, $for_display );

		foreach ( $prices as $price_key => $variation_prices ) {
			$prices[ $price_key ] = $this->sort_variation_prices( $variation_prices );
		}

		return $prices;
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.