Skip to content

Instantly share code, notes, and snippets.

@juanmaguitar
Last active December 1, 2025 15:49
Show Gist options
  • Select an option

  • Save juanmaguitar/94fc5aa510e63b75632138132d40bb4a to your computer and use it in GitHub Desktop.

Select an option

Save juanmaguitar/94fc5aa510e63b75632138132d40bb4a to your computer and use it in GitHub Desktop.
New Command Palette
wp.data.dispatch( wp.commands.store ).registerCommand( {
name: 'myplugin/my-web-command-name',
label: 'Go to juanma.codes',
callback: ( { close } ) => {
document.location.href = 'http://juanma.codes';
close();
},
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment