Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Forgot to add param
  • Loading branch information
ockham committed Sep 25, 2025
commit cb89c3cb0c73bfd2f0fa9c6994fc04f3137301c4
3 changes: 2 additions & 1 deletion src/wp-includes/block-bindings.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,10 @@ function get_block_bindings_source( string $source_name ) {
*
* @since 6.9.0
*
* @param string $block_type The block type whose supported attributes are being retrieved.
* @return array The list of block attributes that are supported by block bindings.gi
*/
function get_block_bindings_supported_attributes() {
function get_block_bindings_supported_attributes( $block_type) {
$block_bindings_supported_attributes = array(
'core/paragraph' => array( 'content' ),
'core/heading' => array( 'content' ),
Expand Down