register_block_core_comments_title

函数


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

在服务器上注册`core/comments-title`区块。

function register_block_core_comments_title() {
	register_block_type_from_metadata(
		__DIR__ . '/comments-title',
		array(
			'render_callback' => 'render_block_core_comments_title',
		)
	);
}