WC_Product_Variation::get_backorders
Get backorders.
Method of the class: WC_Product_Variation{}
Hooks from the method
Returns
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() WC Product Variation::get backorders code WC 10.8.1
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;
}