register_block_core_post_comments_form() – Registers the `core/post-comments-form` block on the server.
You appear to be a bot. Output may be restricted
Description
Registers the core/post-comments-form
block on the server.
Usage
register_block_core_post_comments_form();
Parameters
Returns
void
Source
File name: wordpress/wp-includes/blocks/post-comments-form.php
Lines:
1 to 8 of 8
function register_block_core_post_comments_form() { register_block_type_from_metadata( __DIR__ . '/post-comments-form', array( 'render_callback' => 'render_block_core_post_comments_form', ) ); }