Automattic\WooCommerce\Internal\DataStores\Orders

OrdersTableDataStore::get_meta_table_name()public staticWC 1.0

Get the orders meta data table name.

Method of the class: OrdersTableDataStore{}

No Hooks.

Return

String. Name of order meta data table.

Usage

$result = OrdersTableDataStore::get_meta_table_name();

OrdersTableDataStore::get_meta_table_name() code WC 8.7.0

public static function get_meta_table_name() {
	global $wpdb;

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