WC_CSV_Exporter::get_limit()publicWC 3.1.0

Get batch limit.

Method of the class: WC_CSV_Exporter{}

Return

Int.

Usage

$WC_CSV_Exporter = new WC_CSV_Exporter();
$WC_CSV_Exporter->get_limit();

Changelog

Since 3.1.0 Introduced.

WC_CSV_Exporter::get_limit() code WC 8.7.0

public function get_limit() {
	return apply_filters( "woocommerce_{$this->export_type}_export_batch_limit", $this->limit, $this );
}