From 5952381e31596267df953c0554281dfae52299bf Mon Sep 17 00:00:00 2001 From: Saulius Vikerta Date: Thu, 4 Jun 2026 14:16:14 +0200 Subject: [PATCH] add support of block bindings to list-item --- src/wp-includes/block-bindings.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wp-includes/block-bindings.php b/src/wp-includes/block-bindings.php index 268bb6afa66bb..4f2b0f62bb160 100644 --- a/src/wp-includes/block-bindings.php +++ b/src/wp-includes/block-bindings.php @@ -142,6 +142,7 @@ function get_block_bindings_supported_attributes( $block_type ) { $block_bindings_supported_attributes = array( 'core/paragraph' => array( 'content' ), 'core/heading' => array( 'content' ), + 'core/list-item' => array( 'content' ), 'core/image' => array( 'id', 'url', 'title', 'alt', 'caption' ), 'core/button' => array( 'url', 'text', 'linkTarget', 'rel' ), 'core/post-date' => array( 'datetime' ),