You are here

function gutenberg_register_block_core_archives in Gutenberg 8.2

Same name and namespace in other branches
  1. 8 vendor/gutenberg/block-library/blocks/archives.php \gutenberg_register_block_core_archives()

Register archives block.

1 string reference to 'gutenberg_register_block_core_archives'
archives.php in vendor/gutenberg/block-library/blocks/archives.php

File

vendor/gutenberg/block-library/blocks/archives.php, line 118

Code

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