1<?php2/**3* Server-side rendering of the `core/page-list-item` block.4*5* @package WordPress6*/78/**9* Registers the `core/page-list-item` block on server.10*11* @since 6.3.012*/13function register_block_core_page_list_item() {14register_block_type_from_metadata( __DIR__ . '/page-list-item' );15}16add_action( 'init', 'register_block_core_page_list_item' );17