Skip to main content

Remove logo, updates,comments, new content from admin bar.

Home Forums WordPress Admin Customization Remove logo, updates,comments, new content from admin bar.

Viewing 0 reply threads
  • Author
    Posts
    • #2404

      Layer7web
      Keymaster
      add_action( 'admin_bar_menu', 'l7w_remove_wp_logo', 999 );
      function l7w_remove_wp_logo( $wp_admin_bar ) {
          $wp_admin_bar->remove_node( 'wp-logo' );
          $wp_admin_bar->remove_node( 'updates' );
          $wp_admin_bar->remove_node( 'comments' );
          $wp_admin_bar->remove_node( 'new-content' );
      }
Viewing 0 reply threads

You must be logged in to reply to this topic.