Automattic\WooCommerce\Internal\DataStores\Orders

OrdersTableDataStore::get_cpt_data_store_instance()publicWC 1.0

Helper method to get a CPT data store instance to use.

Метод класса: OrdersTableDataStore{}

Хуков нет.

Возвращает

\WC_Order_Data_Store_CPT. Data store instance.

Использование

$OrdersTableDataStore = new OrdersTableDataStore();
$OrdersTableDataStore->get_cpt_data_store_instance();

Код OrdersTableDataStore::get_cpt_data_store_instance() WC 8.7.0

public function get_cpt_data_store_instance() {
	if ( ! isset( $this->cpt_data_store ) ) {
		$this->cpt_data_store = $this->get_post_data_store_for_backfill();
	}
	return $this->cpt_data_store;
}