register_block_core_comment_content

函式
register_block_core_comment_content ( No parameters )

register_block_core_comment_content: 這個函式註冊了一個顯示評論內容的塊。它包括自定義顯示評論內容的選項,例如是否顯示”更多”連結。

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

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

常見問題

FAQs
檢視更多 >