Advertisement
hmbashar

Remove the WordPress Logo from the Wordpress Admin Bar

May 20th, 2015
530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. /*
  2. * Remove the WordPress Logo from the Wordpress Admin Bar without plugin
  3. * Main Post: http://www.pchelpcenterbd.com/wordpress-development-12807
  4. */
  5. function remove_wp_logo() {
  6. global $wp_admin_bar;
  7. $wp_admin_bar->remove_menu('wp-logo');
  8. }
  9. add_action( 'wp_before_admin_bar_render', 'remove_wp_logo' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement