register_block_core_social_link() WP 1.0
Registers the core/social-link blocks.
No Hooks.
Return
Null. Nothing.
Usage
register_block_core_social_link();
Code of register_block_core_social_link() register block core social link WP 5.6
function register_block_core_social_link() {
register_block_type_from_metadata(
__DIR__ . '/social-link',
array(
'render_callback' => 'render_block_core_social_link',
)
);
}