register_block_core_site_title() – Registers the `core/site-title` block on the server.

You appear to be a bot. Output may be restricted

Description

Registers the core/site-title block on the server.

Usage

register_block_core_site_title();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/blocks/site-title.php
Lines:

1 to 8 of 8
function register_block_core_site_title() {
  register_block_type_from_metadata(
    __DIR__ . '/site-title',
    array(
      'render_callback' => 'render_block_core_site_title',
    )
  );
}
 

 View on GitHub View on Trac