Skip to content

Instantly share code, notes, and snippets.

@nico-martin
Last active June 26, 2019 08:23
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 nico-martin/ceab5ecee84ac036654496a48252e3d6 to your computer and use it in GitHub Desktop.
Save nico-martin/ceab5ecee84ac036654496a48252e3d6 to your computer and use it in GitHub Desktop.
ServerSideRender block
const {ServerSideRender} = wp.components;
wp.blocks.registerBlockType('test/ssr', {
title: 'Post Archiv',
icon: 'grid-view',
category: 'my-category',
edit(props) {
return <ServerSideRender block="test/ssr"/>
},
save() {
return null;
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment