register_block_core_comments_title

函式
register_block_core_comments_title ( No parameters )

register_block_core_comments_title: 這個函式用來為Gutenberg編輯器註冊”評論標題”塊。它顯示評論區的標題。

在伺服器上註冊`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',
		)
	);
}

常見問題

FAQs
檢視更多 >