wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



register_block_core_footnotes › WordPress Function

Da6.3.0
Deprecaton/a
register_block_core_footnotes ( Nessun parametro )
Definito a:
Codex:

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



Sorgenti

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