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