WC_Product_Variation::get_backorders()publicWC 3.0.0

Get backorders.

Method of the class: WC_Product_Variation{}

Hooks from the method

Return

String. yes no or notify

Usage

$WC_Product_Variation = new WC_Product_Variation();
$WC_Product_Variation->get_backorders( $context );
$context(string)
What the value is for. Valid values are view and edit.
Default: 'view'

Changelog

Since 3.0.0 Introduced.

WC_Product_Variation::get_backorders() code WC 8.7.0

public function get_backorders( $context = 'view' ) {
	$value = $this->get_prop( 'backorders', $context );

	// Inherit value from parent.
	if ( 'view' === $context && 'parent' === $this->get_manage_stock() ) {
		$value = apply_filters( $this->get_hook_prefix() . 'backorders', $this->parent_data['backorders'], $this );
	}
	return $value;
}