Automattic\WooCommerce\Internal\Admin\Schedulers
CustomersScheduler::get_total_imported()
Get total number of rows imported.
Method of the class: CustomersScheduler{}
No Hooks.
Return
Int
.
Usage
$result = CustomersScheduler::get_total_imported();
CustomersScheduler::get_total_imported() CustomersScheduler::get total imported code WC 9.3.3
public static function get_total_imported() { global $wpdb; return $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->prefix}wc_customer_lookup" ); }