summaryrefslogtreecommitdiffstats
path: root/wp-includes/blocks/page-list-item.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-includes/blocks/page-list-item.php')
-rw-r--r--wp-includes/blocks/page-list-item.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/wp-includes/blocks/page-list-item.php b/wp-includes/blocks/page-list-item.php
new file mode 100644
index 0000000..2955c79
--- /dev/null
+++ b/wp-includes/blocks/page-list-item.php
@@ -0,0 +1,14 @@
+<?php
+/**
+ * Server-side rendering of the `core/page-list-item` block.
+ *
+ * @package WordPress
+ */
+
+/**
+ * Registers the `core/page-list-item` block on server.
+ */
+function register_block_core_page_list_item() {
+ register_block_type_from_metadata( __DIR__ . '/page-list-item' );
+}
+add_action( 'init', 'register_block_core_page_list_item' );