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



register_block_core_post_navigation_link › WordPress Function

Seitn/v
Veraltetn/v
register_block_core_post_navigation_link ( Keine Parameter )
Definiert in:
Codex:

Registers the `core/post-navigation-link` block on the server.



Quellcode

function register_block_core_post_navigation_link() {
	register_block_type_from_metadata(
		__DIR__ . '/post-navigation-link',
		array(
			'render_callback' => 'render_block_core_post_navigation_link',
		)
	);
}