Automattic\WooCommerce\Internal\DataStores\Orders
OrdersTableDataStore::get_addresses_table_name()
Get the order addresses table name.
Method of the class: OrdersTableDataStore{}
No Hooks.
Return
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 9.3.3
public static function get_addresses_table_name() { global $wpdb; return $wpdb->prefix . 'wc_order_addresses'; }