Is there a way to view all staff notices? Thank you!
إعجاب واحد (1)
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 إعجابات
Thank you! I wasn’t able to find the custom field but I’ll check it out now
Yes! It worked and thank you for the json because it wasn’t going to be easy to filter the ‘custom’ notices
إعجاب واحد (1)
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.