Advertisement
Confused

Remove extra adminbar margin from buddypress

Apr 29th, 2013
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement