WC_Tax::calc_tax( float $price, array $rates, boolean $price_includes_tax = false, boolean $deprecated = false )

Calculate tax for a line.


Description Description


Parameters Parameters

$price

(Required) Price to calc tax on.

$rates

(Required) Rates to apply.

$price_includes_tax

(Optional) Whether the passed price has taxes included.

Default value: false

$deprecated

(Optional) Whether to suppress any rounding from taking place. No longer used here.

Default value: false


Top ↑

Return Return

(array) Array of rates + prices after tax.


Top ↑

Source Source

File: includes/class-wc-tax.php

	public static function calc_tax( $price, $rates, $price_includes_tax = false, $deprecated = false ) {
		if ( $price_includes_tax ) {
			$taxes = self::calc_inclusive_tax( $price, $rates );
		} else {
			$taxes = self::calc_exclusive_tax( $price, $rates );
		}
		return apply_filters( 'woocommerce_calc_tax', $taxes, $price, $rates, $price_includes_tax, $deprecated );
	}


Top ↑

User Contributed Notes User Contributed Notes

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