wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



register_block_core_query_total › WordPress Function

Seit6.8.0
Veraltetn/v
register_block_core_query_total ( Keine Parameter )
Definiert in:
Codex:

Registers the `query-total` block.



Quellcode

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