Related #10136 (review)
Create a container block where the paragraph block is not allowed
wp.blocks.registerBlockType('test/container', {
title: 'container',
category: 'common',
description: 'container',
icon: 'yes',
edit() {
return wp.element.createElement(wp.editor.InnerBlocks, {
allowedBlocks: ['core/image', 'core/gallery']
});
},
save() {
return wp.element.createElement(wp.editor.InnerBlocks.Content);
},
})
- Add an image block inside this container
- Select the image placeholder and hit enter
- A new paragraph block is inserted even if not allowed
Related #10136 (review)
Create a container block where the paragraph block is not allowed