mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
10 lines
280 B
Text
10 lines
280 B
Text
function bp_disable_bp_registration() {
|
|
|
|
if ( is_user_logged_in() ) {
|
|
return false;
|
|
}
|
|
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
|
|
remove_action( 'bp_screens', 'bp_core_screen_signup' );
|
|
}
|
|
|
|
add_action( 'bp_loaded', 'bp_disable_bp_registration' );
|