register_block_core_archives

函数


register_block_core_archives ( No parameters )
定义位置
  • wp-includes/blocks/archives.php
    , line 113
引入
弃用

Register archives block.

function register_block_core_archives() {
	register_block_type_from_metadata(
		__DIR__ . '/archives',
		array(
			'render_callback' => 'render_block_core_archives',
		)
	);
}