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



register_block_core_social_link › WordPress Function

Seit5.4.0
Veraltetn/v
register_block_core_social_link ( Keine Parameter )
Definiert in:
Codex:

Registers the `core/social-link` blocks.



Quellcode

function register_block_core_social_link() {
	register_block_type_from_metadata(
		__DIR__ . '/social-link',
		array(
			'render_callback' => 'render_block_core_social_link',
		)
	);
}