我想从活动流中排除特定的用户帐户。我找到了这个应该排除管理员的代码。有没有关于如何排除特定用户的线索?(此代码位于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
}
?>
谢谢你。