1. /* This should be added to functions.php or bp-custom.php */
  2.  
  3. add_action(‘get_header’, ‘my_filter_head’);
  4.  
  5. function my_filter_head() {
  6. remove_action(‘wp_head’, ‘_admin_bar_bump_cb’);
  7. }