Is it possible to view all staff notices?

Is there a way to view all staff notices? Thank you!

1 Like

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

Thank you! I wasn’t able to find the custom field but I’ll check it out now :slight_smile:

Yes! It worked and thank you for the json because it wasn’t going to be easy to filter the ‘custom’ notices

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.