WordPress 6.9 brings a new little superstar into the editor and its name is Notes.
If you ever wished you could tap someone on the shoulder and say
“Hey, change this text” or “Swap this image please”
right inside the editor without emails, screenshots or WhatsApp messages… this is for you.
WordPress is finally giving editors, designers and developers a way to leave direct feedback on the block itself. Clean, simple and honestly long overdue.
Let’s explore what it is, how it works and why it feels like a small feature with big impact.
What is the Notes Feature in WordPress 6.9
The Notes feature lets you pin feedback to specific blocks inside the editor.
No guessing which paragraph someone is talking about.
No more “remove the second line under the third heading somewhere halfway down the page”.
Notes appear on the right side as a small floating panel connected to the block.

Behind the scenes, WordPress stores each note as a special type of comment, but you never see any of that.
You just click, write, save and keep moving.
Why Notes Matter: For Site Owners and For Developers
For site owners
- It keeps people aligned.
- It keeps your feedback inside WordPress where it belongs.
- No more scattered conversations or lost instructions.
You can ask your designer to adjust spacing, remind your writer to update a paragraph or tell your developer to fix a block. All inside the editor.
For developers
Notes give you structure.
- You can enable or disable notes per post type.
- You can fetch them programmatically.
- You can even build custom dashboards showing unresolved notes.
It’s clean. It’s extensible. And it gives you new ways to build tools around collaboration.
How to Add a Note in WordPress 6.9
It’s beautifully simple.
Step one: open the block settings menu.
Step two: click “Add note”.

WordPress will then open a small panel on the right where you can type your message.

Click “Add note” and you’re done.
The note stays pinned to that block until someone resolves or removes it.
How to Use Notes with Your Team
Notes become powerful in real workflows:
- Writers can request edits from designers
- Designers can nudge layout improvements
- Developers can mark which feedback is resolved
- Project managers can track what is still pending
No external tools.
No scattered communication.
Everything inside your page builder.
Developer Tips: Enabling Notes for Custom Post Types
Developers have full control.
If you want Notes on custom post types, just enable them like this:
register_post_type( 'book', array(
'label' => 'Books',
'public' => true,
'show_in_rest'=> true,
'supports' => array(
'title',
'editor' => array( 'notes' => true ),
'author',
),
) );
You can also use add_post_type_support() if the type is already registered.
Known Limitations (for now)
Notes are brand new, so a few things are still on the roadmap:
- You cannot leave notes on specific text fragments yet
- Notifications may feel too frequent for large teams
- Notes are block level only for now
- Mentions, floating modes and template editor notes are coming later
WordPress 7.0 will bring improvements here.
Final Thoughts
The Notes feature in WordPress 6.9 is small in size but big in impact.
It brings real collaboration inside the editor.
Teams can finally leave feedback in context, track what’s resolved and move faster with fewer mistakes.
If you manage a site or build plugins, start exploring this feature.
It will quickly become part of your workflow and your clients will thank you for it.


Leave a Reply
You must be logged in to post a comment.