WP_REST_Server::get_max_batch_size()protectedWP 5.6.0

Gets the maximum number of requests that can be included in a batch.

Method of the class: WP_REST_Server{}

Hooks from the method

Return

Int. The maximum requests.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_max_batch_size();

Changelog

Since 5.6.0 Introduced.

WP_REST_Server::get_max_batch_size() code WP 6.5.2

protected function get_max_batch_size() {
	/**
	 * Filters the maximum number of REST API requests that can be included in a batch.
	 *
	 * @since 5.6.0
	 *
	 * @param int $max_size The maximum size.
	 */
	return apply_filters( 'rest_get_max_batch_size', 25 );
}