register_block_core_widget_group

函式
register_block_core_widget_group ( No parameters )

register_block_core_widget_group: 這個函式在編輯器中註冊一個widget組塊型別和它的設定。小工具組塊允許使用者在文章或頁面內容中新增一組小工具。

註冊”core/widget-group”區塊。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function register_block_core_widget_group() {
register_block_type_from_metadata(
__DIR__ . '/widget-group',
array(
'render_callback' => 'render_block_core_widget_group',
)
);
}
function register_block_core_widget_group() { register_block_type_from_metadata( __DIR__ . '/widget-group', array( 'render_callback' => 'render_block_core_widget_group', ) ); }
function register_block_core_widget_group() {
	register_block_type_from_metadata(
		__DIR__ . '/widget-group',
		array(
			'render_callback' => 'render_block_core_widget_group',
		)
	);
}

常見問題

FAQs
檢視更多 >