Did you know WordPress has a magical tool called the Command Palette? It’s like a secret menu that helps you do things quickly—just like a power user!
With the latest versions of WordPress, you can simply press Ctrl+K (or Cmd+K if you’re on a Mac) and boom, the Command Palette pops up. It’s like having a cheat code to your website.
But here’s the cool part—you can add your own commands to the palette using your very own plugin. That’s right, you can tell WordPress exactly what to do. Let’s break it down and make it fun!
🥳 Why Customize the Command Palette?
Here are a few reasons why it’s worth it:
- Save Time: Jump to pages, settings, or screens in a flash.
- Look Professional: Impress clients with quick actions.
- Make It Yours: Add commands that fit your workflow.

🧩 What You Need
To follow along, make sure you have these:
- A WordPress site
- Administrator access
- A custom plugin (or just create one!)
🔨 How to Add Custom Commands
You’ll use the wp.data.dispatch
function to register your commands. Here’s a simple example:
add_action('admin_init', function() {
wp_register_script(
'my-command-palette',
plugins_url('/my-command.js', __FILE__),
array('wp-data', 'wp-edit-post'),
null,
true
);
wp_enqueue_script('my-command-palette');
});
Then, in my-command.js
, add this:
const { registerCommand } = wp.data.dispatch('core/command-palette');
registerCommand({
name: 'myplugin/hello',
label: 'Say Hello 👋',
icon: 'smiley',
callback: () => alert('Hello there!')
});
That’s it! Now when you open the Command Palette and search for “Say Hello,” you’ll see your shiny new command!
💡 Pro Tips
- Group commands: Use a naming convention like
myplugin/action
. - Add icons: WordPress supports Dashicons. Use fun ones!
- Make interactive actions: Trigger modals, navigate pages, or even run code.

📦 Real-World Examples
Here are some ideas to inspire you:
- “Open Contact Page” → Takes you straight to edit the Contact page.
- “Clear Cache” → Calls your cache-clearing function.
- “Request Support” → Opens a support form in a modal.
🌈 Make It Context-Aware
You can limit visibility based on where the user is, or their role. Super handy!
registerCommand({
name: 'myplugin/admin-only',
label: 'Admin Secret 🔐',
icon: 'lock',
callback: () => console.log('Shhh...'),
scope: 'admin'
});
You can also use your familiarity with React to pass in props for even more control.
📁 Organize with Care
Once you add a few commands, you might want to organize them. Create an array, filter them, sort them alphabetically, or add tags. Keep your palette clean and useful.
🎉 You’re Now a Power User
Customizing the Command Palette is an easy way to level up your WordPress game. Whether you’re a freelance developer or managing a big site, adding a few smart commands can save you minutes—or even hours.
Think of it like creating hotkeys for your thoughts. 🔥
Ready to make your own WordPress magic?
Then go ahead—customize that palette and command like a boss!
