register_block_core_post_title() – Registers the `core/post-title` block on the server.

Description

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

Usage

register_block_core_post_title();

Parameters

Returns

void

Source

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

1 to 8 of 8
function register_block_core_post_title() {
  register_block_type_from_metadata(
    __DIR__ . '/post-title',
    array(
      'render_callback' => 'render_block_core_post_title',
    )
  );
}
 

 View on GitHub View on Trac

Called by

    Invoked by

      Call hooks

      API Letters: ,,,,