Advertisement
Aurangajeb

Remove HappyAddons Logo from wp-admin bar

Aug 31st, 2020
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. /* Remove HappyAddons Logo from wp-admin bar */
  2. add_action( 'admin_bar_menu', 'remove_ha_logo', 999 );
  3. function remove_ha_logo( $wp_admin_bar ) {
  4.     $wp_admin_bar->remove_node( 'happy-addons' );
  5. }
  6.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement