Automattic\WooCommerce\Internal\DataStores\Orders

OrdersTableDataStore::get_orders_table_name()public staticWC 1.0

Get the custom orders table name.

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

Хуков нет.

Возвращает

Строку. The custom orders table name.

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

$result = OrdersTableDataStore::get_orders_table_name();

Код OrdersTableDataStore::get_orders_table_name() WC 8.7.0

public static function get_orders_table_name() {
	global $wpdb;

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