1
0
antisocial-safety/readme.md

50 lines
2.0 KiB
Markdown
Raw Normal View History

2024-10-10 19:10:14 +02:00
# openai moderation for attachments and comments
running a small website can be a hassle when idiots upload nasty stuff or spam your comments. this plugin uses openai's moderation api to automatically check images and comments for bad content.
## why use this plugin?
it keeps your site clean by blocking offensive or illegal images and comments before they become a problem. saves you headaches.
## features
2024-10-11 17:47:21 +02:00
- **attachment moderation**: images are checked during upload. flagged images are blocked. optionally, anonymize file names.
2024-10-10 19:10:14 +02:00
- **comment moderation**: comments are reviewed before they're saved. flagged comments are set to unapproved.
- **admin integration**: see moderation status directly in your media library and comments list. detailed info available in edit screens.
- **easy setup**: just add your openai api key in the settings.
## installation
1. upload the plugin files to `/wp-content/plugins/`, or install through the wordpress plugins screen.
2. activate the plugin.
3. go to `settings` > `openai moderation` and enter your openai api key.
## how it works
### attachment moderation
- when an image is uploaded, the plugin sends it to openai's moderation api using the `omni-moderation-latest` model.
2024-10-11 17:47:21 +02:00
- if the image is flagged in any of the abuse categories, the attachment does not get created.
2024-10-10 19:10:14 +02:00
### comment moderation
- before a comment is saved, the plugin checks the content with openai's moderation api.
- flagged comments are set to unapproved, so they won't show up on your site unless you approve them.
### backend functionality
- hooks into `add_attachment` to moderate images upon upload.
- hooks into `preprocess_comment` and `pre_comment_approved` to moderate comments before saving.
- stores moderation results in post and comment meta.
- adds custom columns in admin screens to display moderation status.
- provides detailed moderation info in the attachment and comment edit screens.
## requirements
- wordpress 5.0 or higher
- an openai api key
## notes
- if the openai api key isn't set, the plugin won't function.