We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6a9f26 commit cbd32e0Copy full SHA for cbd32e0
src/wp-includes/block-bindings.php
@@ -140,11 +140,13 @@ function get_block_bindings_source( string $source_name ) {
140
*/
141
function get_block_bindings_supported_attributes( $block_type ) {
142
$block_bindings_supported_attributes = array(
143
- 'core/paragraph' => array( 'content' ),
144
- 'core/heading' => array( 'content' ),
145
- 'core/image' => array( 'id', 'url', 'title', 'alt', 'caption' ),
146
- 'core/button' => array( 'url', 'text', 'linkTarget', 'rel' ),
147
- 'core/post-date' => array( 'datetime' ),
+ 'core/paragraph' => array( 'content' ),
+ 'core/heading' => array( 'content' ),
+ 'core/image' => array( 'id', 'url', 'title', 'alt', 'caption' ),
+ 'core/button' => array( 'url', 'text', 'linkTarget', 'rel' ),
+ 'core/post-date' => array( 'datetime' ),
148
+ 'core/navigation-link' => array( 'url' ),
149
+ 'core/navigation-submenu' => array( 'url' ),
150
);
151
152
$supported_block_attributes =
0 commit comments