Skip to content

Instantly share code, notes, and snippets.

@jorgefilipecosta
Created October 15, 2018 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jorgefilipecosta/edafb2422ef41020d75619adf31d725e to your computer and use it in GitHub Desktop.
Save jorgefilipecosta/edafb2422ef41020d75619adf31d725e to your computer and use it in GitHub Desktop.
( function() {
var registerBlockType = wp.blocks.registerBlockType;
var el = wp.element.createElement;
var InnerBlocks = wp.editor.InnerBlocks;
var __ = wp.i18n.__;
var TEMPLATE = [
[ 'core/paragraph', { placeholder: 'Paragraph 1', customFontSize: 35 } ],
];
registerBlockType( 'myplugin/test-inner-paragraph', {
title: 'Test InnerBlocks Paragraph',
icon: 'cart',
category: 'common',
supports: {
align: true,
},
edit: function( props ) {
return el( 'div', { style: { outline: '1px solid gray', padding: 5, minWidth: 200 } },
el(
InnerBlocks,
{
template: TEMPLATE,
templateLock: false,
}
)
);
},
save: function() {
return el( 'div', { style: { outline: '1px solid gray', padding: 5 } },
el( InnerBlocks.Content )
);
},
} );
} )();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment