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



register_block_core_term_count › WordPress Function

Seit6.9.0
Veraltetn/v
register_block_core_term_count ( Keine Parameter )
Definiert in:
Codex:

Registers the `core/term-count` block on the server.



Quellcode

function register_block_core_term_count() {
	register_block_type_from_metadata(
		__DIR__ . '/term-count',
		array(
			'render_callback' => 'render_block_core_term_count',
		)
	);
}