Is it possible to view all staff notices?

You can use the Data Explorer plugin and run this query to view all staff notices:

SELECT post_id, value::json->>'raw'
FROM post_custom_fields
WHERE name = 'notice' AND value::json->>'type' = 'custom'
7 Likes