Skip to content

Instantly share code, notes, and snippets.

@goiblas
Created August 4, 2019 08:50
Show Gist options
  • Save goiblas/4db4644a2a02990f1694e2589c08c398 to your computer and use it in GitHub Desktop.
Save goiblas/4db4644a2a02990f1694e2589c08c398 to your computer and use it in GitHub Desktop.
Structure block (WordPress)
const { registerBlockType } = wp.blocks;
registerBlockType( 'block-restrict-content/block-restrict-content', {
title: 'Restrict Content',
icon: 'lock',
category: 'layout',
edit: ( ) => {
return (
<div>Hola Editor!</div>
)
},
save: ( ) => {
return (
<div>Hola Frontend!</div>
)
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment