This file contains hidden or 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
/************************************************ | |
Audio Blocks | |
************************************************/ | |
.wp-block-audio { | |
margin-left: 0px; | |
margin-right: 0px; | |
} | |
.wp-block-audio audio { | |
width: 100%; |
This file contains hidden or 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)) { |
OlderNewer