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



register_block_core_footnotes › WordPress Function

Seit6.3.0
Veraltetn/v
register_block_core_footnotes ( Keine Parameter )
Definiert in:
Codex:

Registers the `core/footnotes` block on the server.



Quellcode

function register_block_core_footnotes() {
	register_block_type_from_metadata(
		__DIR__ . '/footnotes',
		array(
			'render_callback' => 'render_block_core_footnotes',
		)
	);
}