register_block_core_comments

函式
register_block_core_comments ( No parameters )

register_block_core_comments: 這是一個WordPress函式,用於在塊編輯器中註冊”評論”塊。這個塊可以被新增到一個文章或頁面,以允許使用者在內容中新增評論。

在伺服器上註冊”core/comments”塊。

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

常見問題

FAQs
檢視更多 >