Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active September 22, 2019 13:59
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 vanaf1979/ca01f770935543dd1a9781fcf3ef53fe to your computer and use it in GitHub Desktop.
Save vanaf1979/ca01f770935543dd1a9781fcf3ef53fe to your computer and use it in GitHub Desktop.
Gist for my tutorial: Building a Gutenberg sidebar plugin Part 3: Registering with the block editor. https://vanaf1979.nl/building-a-gutenberg-sidebar-plugin-part-3-registering-with-the-block-editor/
/**
* Sidebar component voor the gutenberg editor.
*/
class Sidebar extends React.Component {
...
render() {
return (
<Fragment>
<PluginSidebarMoreMenuItem target="metatags-sidebar" icon='editor-customchar'>
{__("MetaTags", "metatags")}
</PluginSidebarMoreMenuItem>
</Fragment>
)
}
}
export default Sidebar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment