wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



register_block_core_social_link › WordPress Function

Odn/a
Przestarzałyn/a
register_block_core_social_link ( Brak parametrów )
Zdefiniowane na:
Codex:

Registers the `core/social-link` blocks.



Źródło

function register_block_core_social_link() {
	$path     = __DIR__ . '/social-link/block.json';
	$metadata = json_decode( file_get_contents( $path ), true );

	register_block_type(
		$metadata['name'],
		array_merge(
			$metadata,
			array(
				'render_callback' => 'render_block_core_social_link',
			)
		)
	);
}