Automattic\WooCommerce\Internal\DataStores\Orders

OrdersTableDataStore::get_operational_data_table_name()public staticWC 1.0

Get the orders operational data table name.

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

Хуков нет.

Возвращает

Строку. The orders operational data table name.

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

$result = OrdersTableDataStore::get_operational_data_table_name();

Код OrdersTableDataStore::get_operational_data_table_name() WC 8.7.0

public static function get_operational_data_table_name() {
	global $wpdb;

	return $wpdb->prefix . 'wc_order_operational_data';
}