Created
May 1, 2020 13:31
-
-
Save igmoweb/63875c16995bc3bbed7fb843362911f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { registerPlugin } = wp.plugins; | |
const { PluginDocumentSettingPanel } = wp.editPost; | |
const PANEL_NAME = 'my-panel'; | |
const Render = () => ( | |
<PluginDocumentSettingPanel | |
name="custom-setting-panel" | |
title="Custom Panels" | |
className="custom-panel" | |
> | |
Custom WP Gutenberg Plugin Panel Content | |
</PluginDocumentSettingPanel> | |
); | |
registerPlugin( PANEL_NAME, { | |
render: Render, | |
icon: 'palmtree', | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment