register_block_core_comments()
Registers the core/comments block on the server.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
register_block_core_comments();
Список изменений
| С версии 6.1.0 | Введена. |
Код register_block_core_comments() register block core comments WP 6.9.4
function register_block_core_comments() {
register_block_type_from_metadata(
__DIR__ . '/comments',
array(
'render_callback' => 'render_block_core_comments',
'skip_inner_blocks' => true,
)
);
}