Est-il possible de voir tous les avis du personnel ?

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

1 « J'aime »

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 « J'aime »

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 « J'aime »

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