Advertisement
designbymerovingi

remove-mycred-toolbar-menu

Jan 29th, 2016
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. /**
  2.  * Remove myCRED Toolbar
  3.  * @version 1.0
  4.  */
  5. add_action( 'admin_bar_menu', 'remove_mycred_balance_from_wp_toolbar', 90 );
  6. function remove_mycred_balance_from_wp_toolbar( $wp_admin_bar ) {
  7.  
  8.         $wp_admin_bar->remove_menu( 'mycred-account' );
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement