get_default_block_categories

函数
get_default_block_categories ( No parameters )
返回值
  • (array[]) Array of categories for block types.
定义位置
相关方法
get_block_categoriesget_default_block_template_typesget_default_block_editor_settingsrender_block_core_categoriesget_all_category_ids
引入
5.8.0
弃用
-

get_default_block_categories:该函数返回块编辑器中可用的默认块类别数组。

返回区块类型的默认类别列表。

function get_default_block_categories() {
	return array(
		array(
			'slug'  => 'text',
			'title' => _x( 'Text', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'media',
			'title' => _x( 'Media', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'design',
			'title' => _x( 'Design', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'widgets',
			'title' => _x( 'Widgets', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'theme',
			'title' => _x( 'Theme', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'embed',
			'title' => _x( 'Embeds', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'reusable',
			'title' => _x( 'Reusable Blocks', 'block category' ),
			'icon'  => null,
		),
	);
}

常见问题

FAQs
查看更多 >