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

Private BuddyPress

설명

Protect your BuddyPress Installation from strangers. Only registered users will be allowed to view the installation and all other users will be redirected to the login page. Users attempting to view blog content via RSS are also authenticated via HTTP Auth.

You can exclude the registration, the homepage and blog pages (e.g. posts, archives and non-buddypress pages) from protection. In combination with the plugin ‘Invitation Code Checker’ your installation stays private but the registration is for users with a special password open.

The plugin includes a German and Hebrew (thanks to gstupp) translation.

스크린샷

  • Settings page, you can find it under Settings -> Privacy

설치

Use the automatic plugin installation in the backand or install the plugin manuell:

  1. Upload private-buddypress to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

FAQ

Can I exclude the homepage, the registration or blog pages from protection?

Yes, you can define the excludes on the settings page unter Settings -> Privacy.

Can I change the URL where non-loggedin users are being redirected?

Yes, currently you need to write a filter function in your functions.php.

function redirect_nonloggedin_users($current_uri, $redirect_to) {
    // Redirect users to the homepage
    // Caution! Exclude the homepage from 'Private BuddyPress' options
    // to avoid redirection loops!
    return get_option('siteurl') . '/?from=' . $redirect_to;
}

add_filter('pbp_redirect_login_page', 'redirect_nonloggedin_users', 10, 2);
Can I exclude e.g. the blog directory from protection?

Yes, you need to write a filter:

function make_blog_directory_visible($visibility) {
    global $bp;

    if ( bp_is_directory() && $bp->current_component == $bp->blogs->slug )
        return false;

    return $visibility;
}

add_filter('pbp_login_required_check', 'make_blog_directory_visible');
Are there other actions or filters?

Yes, currently in Private Buddypress are existing 5 actions:

  • pbp_init: Fired when Private BuddyPress is initialised
  • pbp_admin_init: Fired when Private BuddyPress in the admin area is initialised
  • pbp_login_redirect: Fired when the users is not logged in and is being redirected to the login page or when it is a feed asked for a password
  • pbp_save_options: Fired when the options of Private BuddyPress has been changed
  • pbp_options_page: Fired on the options page to added more fields for custom options

Also in Private BuddyPress are existing 6 filters:

  • pbp_is_buddypress_feed: Boolean value if the current page is a BuddyPress feed
  • pbp_redirect_to_after_login: Called URI from where the users came from
  • pbp_redirect_login_page: URI where nonloggedin users are being redirected
  • pbp_login_required_check: Boolean value if for the current page a login is needed
  • pbp_pre_options: Object with the new options before they saved
  • pbp_protect_blog_feeds: Boolean value if blog feeds should be protected

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

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

기여자

자국어로 “Private BuddyPress”(을)를 번역하세요.

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

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

변경이력

1.0.4

  • Fixed: If blog pages excluded from protection, don’t protect the feeds
  • Added: New filter: ‘pbp_protect_blog_feeds’
  • Added: Hebrew translation, thanks to gstupp

1.0.3

  • Fixed: Options no longer disappear suddenly
  • Fixed: BuddyPress feeds are now protected
  • Added: Filters and actions, see FAQ for more information

1.0.2

  • Fixed: Saving optings haven’t worked correctly
  • Added: Blog pages (e.g. posts, archives, non-buddypress pages) can now be excluded from protection

1.0.1

  • Notification update for users who downloaded the plugin before it was finished
  • Fixed: Some fatal PHP errors
  • Added: Plugin is now translatable
  • Added: German translation

1.0

  • First release