すべてのスタッフ通知を表示することは可能ですか?

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 :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

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