Home » Blog » WordPress 6.9 Notes Feature: Block-Level Collaboration Inside the Editor

WordPress 6.9 Notes Feature: Block-Level Collaboration Inside the Editor

·

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.

Block note panel shown on the right side in WordPress 6.9 editor
A note attached to a block so editors instantly know where feedback belongs.

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”.

Add note option highlighted inside block options menu
The new “Add note” option appears right inside the block action menu.

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

Writing a note using the Notes editor in WordPress 6.9
Writing a note attached to a specific block. Simple and fast.

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.

Get a Free Website Performance Audit

Find out how fast, secure, and optimized your WordPress website really is.

I’ll analyze your site’s loading speed, server performance, and overall technical health — and send you a short report with practical improvements you can apply right away.

Just share your website URL below, and I’ll handle the rest.

Select list(s):

*We hate spam too, and will never share your email address or send any crap! Unsubscribe anytime.

👋 Hi! I’m Muzammil – yes, the one who builds.

I’m a creative full-stack engineer obsessed with crafting experiences that feel as good as they function.
Currently, I’m helping businesses grow through design-driven development and clean, scalable code.

One response to “WordPress 6.9 Notes Feature: Block-Level Collaboration Inside the Editor”

  1. WordPress 6.9: Unpacking the Abilities API, What It Enables and How to Prepare | Muzammil

    […] & content workflow: WordPress block-level “Notes” (comments on individual blocks) allow editors/designers to leave feedback inside the […]

Leave a Reply