Skip to content

Instantly share code, notes, and snippets.

@Mamaduka
Created September 3, 2024 18:34
Show Gist options
  • Save Mamaduka/da9b42160b66c9ece628c477440d7864 to your computer and use it in GitHub Desktop.
Save Mamaduka/da9b42160b66c9ece628c477440d7864 to your computer and use it in GitHub Desktop.
const el = wp.element.createElement;
const registerPlugin = wp.plugins.registerPlugin;
const { PluginPostStatusInfo, PostTrashCheck, PostTrash } = wp.editor;
function ReturnOfTheTrashButton() {
return el(
PluginPostStatusInfo,
{},
el( PostTrashCheck, {}, el( PostTrash ) )
);
}
registerPlugin( 'return-of-the-trash-button', {
render: ReturnOfTheTrashButton,
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment