이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Comment Blacklist Manager

설명

Comment Blacklist Manager retrieves a list of terms from a remote source and updates the blacklist_keys setting in WordPress. The plugin will automatically fetch a list of terms on a regular schedule and update the contents of the “Comment Blacklist” field. Terms added manually via the “Local Blacklist” field will be retained during the scheduled updates. Terms added manually to the “Excluded Terms” field will be removed from the list.

The default list of terms is fetched from a GitHub repository maintained by Grant Hutchinson.

스크린샷

  • The “Discussion Settings” screen showing the various blacklist fields

설치

To install the plugin using the WordPress dashboard:

  1. Go to the “Plugins > Add New” page
  2. Search for “Comment Blacklist Manager”
  3. Click the “Install Now” button
  4. Activate the plugin on the “Plugins” page
  5. (Optional) Add terms to the “Local Blacklist” field in “Settings > Discussion”
  6. (Optional) Add terms to the “Excluded Terms” field in “Settings > Discussion”

To install the plugin manually:

  1. Download the plugin and decompress the archive
  2. Upload the comment-blacklist-manager folder to the /wp-content/plugins/ directory on the server
  3. Activate the plugin on the “Plugins” page
  4. (Optional) Add terms to the “Local Blacklist” field in “Settings > Discussion”
  5. (Optional) Add terms to the “Excluded Terms” field in “Settings > Discussion”

FAQ

What is the source for the default blacklist?

The default blacklist is maintained by Grant Hutchinson on GitHub.

Can I provide my own blacklist sources?

Yes, you can. Use the filter cblm_sources to add different source URLs.

To replace the default source completely:

add_filter( 'cblm_sources', 'rkv_cblm_replace_blacklist_sources' );

function rkv_cblm_replace_blacklist_sources( $list ) {

    return array(
        'http://example.com/blacklist-1.txt'
        'http://example.com/blacklist-2.txt'
    );

}

To add a new source to the existing sources:

add_filter( 'cblm_sources', 'rkv_cblm_add_blacklist_source' );

function rkv_cblm_add_blacklist_source( $list ) {

    $list[] = 'http://example.com/blacklist-1.txt';

    return $list;

}

The plugin expects the list of terms to be in plain text format with each entry on its own line. If the source is provided in a different format (eg: a JSON feed or serialized array), then the result must be run through the cblm_parse_data_result filter, which parses the source as a list of terms and the source URL.

What is the default update schedule?

The plugin will update the list of terms from the specified sources every 24 hours.

Can I change the update schedule?

Yes, you can. Use the filter cblm_update_schedule to modify the time between updates.

add_filter( 'cblm_update_schedule', 'rkv_cblm_custom_schedule' );

function rkv_cblm_custom_schedule( $time ) {

    return DAY_IN_SECONDS;

}

The return data should be specified using WordPress Transient Time Constants.

Can I add my own terms to the blacklist?

Yes. Individual terms can be added to the “Local Blacklist” field in the “Settings > Discussion” area of WordPress. Each term must be entered on its own line.

Can I exclude terms from the blacklist?

Yes. Individual terms can be excluded from the automatically fetched blacklist by adding them to the “Excluded Terms” field in the “Settings > Discussion” area of WordPress. Each term must be entered on its own line.

후기

2016년 9월 3일
Does as advertised. I especially liked how you can exclude words from the automated blacklist if they don’t suit your website.
모든 5 평가 읽기

기여자 & 개발자

“Comment Blacklist Manager”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

“Comment Blacklist Manager”(이)가 2 개 언어로 번역되었습니다. 기여해 주셔서 번역자님께 감사드립니다.

자국어로 “Comment Blacklist Manager”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.0.1 — 2020/03/23

  • Fixed admin notice to properly clear when a manual update is run
  • Minor code cleanup

1.0.0

  • Initial release