我想在WordPress Gutenberg中制作一个Section
块。我创建了一个节块,并将古腾堡<InnerBlocks>
组件用作内部/子块。它工作正常,但Section
本身已显示为内部阻止列表。我想从其内部块中排除Section
块。 <InnerBlocks>
组件具有属性allowedBlocks
,用于指定要用作内部块的块。但这对我没有帮助,因为我只想禁止内部块中的Section
个块。
如何禁止<InnerBlocks>
中的单个特定块?
我需要一个像disallowedBlocks
这样的选项,以便可以从
<InnerBlocks disallowedBlocks={['leo-block/section']} />
完整代码
;(function(wp) {
const {registerBlockType} = wp.blocks;
const {InnerBlocks} = wp.editor;
const {__} = wp.i18n;
registerBlockType('leo-block/section', {
title: __('Section'),
icon: 'grid-view',
category: 'vr-blocks',
descrition: __('Section block for manage content section'),
attributes: {
content: {
default: 'Hello World'
},
spacing: {
default: {
paddingTop: '70px',
paddingBottom: '70px',
marginTop: '0',
marginBottom: '0'
}
}
},
edit: ({attributes, setAttributes, className, isSelected}) => {
return (
<section className = {className} style={attributes.spacing}>
<div className="container">
<InnerBlocks/>
{/* TODO: Not allow "leo-block/section" */}
</div>
</section>
)
},
save: ({attributes, className}) => {
return (
<section className = {className} style={attributes.spacing}>
<div className="container">
<InnerBlocks.Content/>
</div>
</section>
)
}
})
})(window.wp)
输出屏幕截图
答案 0 :(得分:0)
使用以下代码段,它将为您提供除leo-block/section
之外的允许阻止列表。如果需要,可以添加更多例外。而且你知道该怎么做?
const ALLOWED_BLOCKS = wp.blocks.getBlockTypes().map(block => block.name).filter(blockName => blockName !== 'leo-block/section');