register_block_core_comment_template

函式
register_block_core_comment_template ( No parameters )

register_block_core_comment_template: 這個函式註冊了一個顯示評論表格模板的塊。它包括自定義表格顯示的選項,如表格中的欄位和提交按鈕的文字。

在伺服器上註冊`core/comment-template`塊。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function register_block_core_comment_template() {
register_block_type_from_metadata(
__DIR__ . '/comment-template',
array(
'render_callback' => 'render_block_core_comment_template',
'skip_inner_blocks' => true,
)
);
}
function register_block_core_comment_template() { register_block_type_from_metadata( __DIR__ . '/comment-template', array( 'render_callback' => 'render_block_core_comment_template', 'skip_inner_blocks' => true, ) ); }
function register_block_core_comment_template() {
	register_block_type_from_metadata(
		__DIR__ . '/comment-template',
		array(
			'render_callback'   => 'render_block_core_comment_template',
			'skip_inner_blocks' => true,
		)
	);
}

常見問題

FAQs
檢視更多 >