Automattic\WooCommerce\Internal\DataStores\Orders
OrdersTableDataStore::get_addresses_table_name
Get the order addresses table name.
Method of the class: OrdersTableDataStore{}
No Hooks.
Returns
String. The order addresses table name.
Usage
$result = OrdersTableDataStore::get_addresses_table_name();
OrdersTableDataStore::get_addresses_table_name() OrdersTableDataStore::get addresses table name code WC 10.7.0
public static function get_addresses_table_name() {
global $wpdb;
return $wpdb->prefix . 'wc_order_addresses';
}