web-dev-qa-db-ja.com

BuddyPressのアクティビティストリームからユーザーを除外しますか?

特定のユーザーアカウントをアクティビティストリームに表示しないようにします。私はAdminを除外することになっているこのコードを見つけました。特定のユーザーを除外する方法はありますか? (このコードはbp-custom.phpに入っています)

<?php 
add_action("plugins_loaded","bpdev_init_sm_mode");
function bpdev_init_sm_mode(){
if(is_site_admin())
remove_action("wp_head","bp_core_record_activity");//id SM is on, remove the record activity hook
}
?>

ありがとうございました。

2
Pwn
<?php
add_action("plugins_loaded","bpdev_init_sm_mode");
function bpdev_init_sm_mode(){
    global $current_user;
    if(is_user_logged_in()) {
        get_currentuserinfo();
        if("someusername" == $current_user->user_login) {
            remove_action("wp_head","bp_core_record_activity");//id SM is on, remove the record activity hook
        }
    }
}
?>
2
Brady