توضیحات
Modifies the Empty Spam action in WordPress to process the spam deletion in batches, allowing you to delete thousands or even hundreds of thousands of spam comments at once without killing your server.
Have you found a bug or have a suggestion or improvement you’d like to submit? This plugin is available on Github and pull requests are welcome!
نصب
- Activate the plugin
- Go to Comments > Spam
- Use the “Empty Spam” button to clear out all spam comments
سوالات متداول
- Installation Instructions
-
- Activate the plugin
- Go to Comments > Spam
- Use the “Empty Spam” button to clear out all spam comments
- Can I change the number of comments deleted per batch?
-
Yes, there are two ways to do it.
-
You can modify the number via a filter, like this:
<?php
function pw_bcsd_per_batch( $per_batch ) {$per_batch = 50; return $per_batch;
}
add_filter( ‘pw_bcpd_comments_per_batch’, ‘pw_bcsd_per_batch’ ); -
You can modify it by adding a constant to your
wp-config.php
file:define( ‘PW_BCPD_PER_BATCH’, 50 );
-
نقد و بررسیها
نقد و بررسیای برای این افزونه یافت نشد.
توسعه دهندگان و همکاران
“Batch Comment Spam Deletion” نرم افزار متن باز است. افراد زیر در این افزونه مشارکت کردهاند.
مشارکت کنندگانترجمه “Batch Comment Spam Deletion” به زبان شما.
علاقه مند به توسعه هستید؟
کد را مرور کنید, را بررسی کنید مخزن SVN, یا مشترک شوید گزارش توسعه توسط RSS.
گزارش تغییرات
1.0.6
- Fix: Delete Spam button displaying improperly
- Tested with WordPress 4.8 and later
1.0.5
- Fix: missing closing tag
1.0.4
- Fix: Fatal error during batch processing
1.0.3
- New: added the ability to change the per-batch number via the PW_BCPD_PER_BATCH constant
1.0.2
- Fix: Undefined index error
1.0.1
- Fix: The Empty Trash button was accidentally removed from the Trash page
1.0
- First release!