WC_Customer_Data_Store_Session::get_order_count()publicWC 3.0.0

Return the number of orders this customer has.

Method of the class: WC_Customer_Data_Store_Session{}

No Hooks.

Return

Int.

Usage

$WC_Customer_Data_Store_Session = new WC_Customer_Data_Store_Session();
$WC_Customer_Data_Store_Session->get_order_count( $customer );
$customer(WC_Customer) (required) (passed by reference — &)
Customer object.

Changelog

Since 3.0.0 Introduced.

WC_Customer_Data_Store_Session::get_order_count() code WC 8.7.0

public function get_order_count( &$customer ) {
	return 0;
}