register_block_core_comments()WP 6.1.0

Registers the core/comments block on the server.

No Hooks.

Returns

null. Nothing (null).

Usage

register_block_core_comments();

Changelog

Since 6.1.0 Introduced.

register_block_core_comments() code WP 6.9.1

function register_block_core_comments() {
	register_block_type_from_metadata(
		__DIR__ . '/comments',
		array(
			'render_callback'   => 'render_block_core_comments',
			'skip_inner_blocks' => true,
		)
	);
}