register_block_core_latest_comments

函式
register_block_core_latest_comments ( No parameters )

register_block_core_latest_comments: 此函式用於註冊Gutenberg編輯器的”最新評論”塊。該塊顯示文章或頁面上的最新評論。

註冊`core/latest-comments`區塊。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function register_block_core_latest_comments() {
register_block_type_from_metadata(
__DIR__ . '/latest-comments',
array(
'render_callback' => 'render_block_core_latest_comments',
)
);
}
function register_block_core_latest_comments() { register_block_type_from_metadata( __DIR__ . '/latest-comments', array( 'render_callback' => 'render_block_core_latest_comments', ) ); }
function register_block_core_latest_comments() {
	register_block_type_from_metadata(
		__DIR__ . '/latest-comments',
		array(
			'render_callback' => 'render_block_core_latest_comments',
		)
	);
}

常見問題

FAQs
檢視更多 >