# gutenberg/23.2.2/build/scripts/block-library/page-list-item.php

Gutenberg, version 23.2.2. 17 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/23.2.2/code/build/scripts/block-library/page-list-item.php
- Raw: https://pluginprobe.com/plugins/gutenberg/23.2.2/raw/build/scripts/block-library/page-list-item.php
- Modified: 2025-11-05T15:23:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gutenberg/23.2.2/code/build/scripts/block-library/page-list-item.php#L10-L20`.

```php
<?php
/**
 * Server-side rendering of the `core/page-list-item` block.
 *
 * @package WordPress
 */

/**
 * Registers the `core/page-list-item` block on server.
 *
 * @since 6.3.0
 */
function gutenberg_register_block_core_page_list_item() {
	register_block_type_from_metadata( __DIR__ . '/page-list-item' );
}
add_action( 'init', 'gutenberg_register_block_core_page_list_item', 20 );

```
