register_block_core_comments

函数


register_block_core_comments ( No parameters )
定义位置
  • wp-includes/blocks/comments.php
    , line 92
引入
弃用

Registers the `core/comments` block on the server.

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