register_block_core_query_total()WP 6.8.0

Registers the query-total block.

No Hooks.

Returns

null. Nothing (null).

Usage

register_block_core_query_total();

Changelog

Since 6.8.0 Introduced.

register_block_core_query_total() code WP 6.9.1

function register_block_core_query_total() {
	register_block_type_from_metadata(
		__DIR__ . '/query-total',
		array(
			'render_callback' => 'render_block_core_query_total',
		)
	);
}