Describe the bug
Original Core Trac Ticket - https://core.trac.wordpress.org/ticket/45057
When a page is set to be the Privacy Policy page a help notice containing a link to the Privacy Policy guide is displayed in the editor.
When viewing this page in the Gutenberg editor the notice is missing leaving the only reference to the guide found in the Privacy Settings.
It would be nice to have this notice supported as part of 5.0.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The Privacy Policy guide notice should be displayed on the Privacy Policy page irrelevant of editor (Classic & Gutenberg) being used.
Screenshots

Classic Editor w/ Privacy Policy notice

Gutenberg Editor w/o notice
Browser Information is Irrelevant
Related - #6388
Hi,
Nice catch @garrett-eclipse :)
Here is a prototype of what should be done for this specific page.
.is-warning notice with the text currently used in Classic Editor.Technical issues that should be solved:
wp_page_for_privacy_policy item in wp_option table) to append the notice.
Cheers,
Jb
Thanks @audrasjb
Other technical requirements, if the PHP admin_notice isn't just surfaced via Gutenberg and is instead rebuilt, that should be noted;
current_user_can( 'manage_privacy_options' )tools.php?wp-privacy-policy-guide=1 but will need to be run through admin_url() or similar.For reference here's the PHP notice code;
https://github.com/WordPress/WordPress/blob/f7ba175491b725a5f3d636072c8b432774d38ae3/wp-admin/includes/misc.php#L1590-L1632
@aduth is working on Notices implementation in Gutenberg, related PR #9617.
Looks like PR #9617 got merged 馃帀
Does that mean existing notices simply work so there's nothing more needed? Or what are the next steps to re-introducing the Privacy Policy guide notice?
Thank you
Thanks for clarifying @aduth
So there's still some work to be done to integrate PHP notices into the new notices API component.
I opened #11999 to move the notice to a new action hook so that it is actually output. This will allow the work in #11604 to pass the notice into the Notices API.
Most helpful comment
@aduth is working on Notices implementation in Gutenberg, related PR #9617.