A hacky way how to return to formerly expected behaviour for the group block for the WordPress block editor.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @type {string[]} Array of block names that should be excluded from the layout settings. | |
*/ | |
const haystack = ['core/group']; | |
wp.hooks.addFilter( | |
'blocks.registerBlockType', | |
'lh/fseFixes/layoutSettings', | |
(settings, name) => { | |
if (!haystack.includes(name)) { | |
return settings; | |
} | |
const newSettings = { | |
...settings, | |
supports: { | |
...(settings.supports || {}), | |
layout: { | |
...(settings.supports.layout || {}), | |
allowEditing: false, | |
allowSwitching: false, | |
allowInheriting: true, | |
}, | |
__experimentalLayout: { | |
...(settings.supports.__experimentalLayout || {}), | |
allowEditing: false, | |
allowSwitching: false, | |
allowInheriting: true, | |
}, | |
}, | |
}; | |
return newSettings; | |
}, | |
20 | |
); | |
wp.hooks.addFilter( | |
'blocks.getBlockAttributes', | |
'lh/fseFixes', | |
(attributes, blockType) => { | |
if (!haystack.includes(blockType.name)) { | |
return attributes; | |
} | |
attributes = { | |
...attributes, | |
layout: { | |
inherit: true, | |
}, | |
}; | |
return attributes; | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment