Perhaps you could use $wp_admin_bar->get_nodes(); to get all toolbar nodes, then loop them through and modify the right nodes as needed. Something along these lines,
add_action( 'admin_bar_menu', 'customize_my_wp_admin_bar', 80 );
function customize_my_wp_admin_bar( $wp_admin_bar ) {
$all_toolbar_nodes = $wp_admin_bar->get_nodes();
if ( ! $all_toolbar_nodes ) {
return;
}
foreach ( $all_toolbar_nodes as $node ) {
// Skip nodes you don't want to edit
if ( ! $some_logic ) {
continue;
}
//Change target
$node->meta['target'] = '_blank';
//Update Node.
$wp_admin_bar->add_node($node);
}
}
I can’t remember what properties $node has, but I guess there’s some sort of parent property that you can use in the if statement to skip the wrong ones.
Related Posts:
- How do I add an icon to a new admin bar item?
- remove admin bar new post/link/media sub menu
- How do I remove the admin bar (styling) from frontend only?
- hide WordPress 3.1 admin menu
- WordPress Admin Bar Moving Links
- WP admin bar disappeared
- How to preview your website without the top WordPress admin bar, but remain signed in?
- Make ‘Howdy, [name]’ function as log out button
- Disable the admin bar
- How can I specify the position of an admin bar item added with $wp_admin_bar->add_menu() or add_node()?
- Replace admin bar logo
- Open Admin bar “Visit site” in a new window
- Admin Bar CSS left over after removal
- Is there a ready-made fix to make the admin bar not obscure content?
- How to remove wordpress admin bar in dashboard
- Is there an easy way to move the wp_admin_bar to my own location?
- How to change the Admin-bar’s link target?
- Admin toolbar not displaying on pages
- Modify the WordPress admin bar CSS?
- How to hide “post” link from the admin bar
- Question about how global $wp_admin_bar works
- Add class to WordPress admin bar?
- WP Admin Bar shown at the bottom
- Hide admin tool bar from back end dashboard [duplicate]
- Remove admin menu, admin header and admin footer for authors
- Hide admin bar on all pages except homepage
- How to remove admin bar logo in WordPress using plugin
- Exclude admin bar from showing avatar customization
- Top admin bar / toolbar not showing even when logged in, but empty top margin showing?
- Why is the admin bar appearing (on certain pages) for non logged-in users?
- nginx-fastcgi caching causes admin bar to dissapear
- set admin bar to visible for authors, contributors, moderators and admins
- How do I display wordpress admin bar outside wordpress?
- New Admin Bar Not Functioning
- Hide admin bar by default
- custom page – not able to show toolbar on top
- How can I remove menu items from “my sites” on a multi-site network?
- Using an SVG icon for an Admin menu bar item
- need help styling dashicon in admin bar
- Loading Admin Toolbar in header not Footer to Scroll it with page
- Display wordpress admin bar outside wordpress in Magento?
- What code removes the admin bar for all users in WordPress 3.3?
- Admin Bar below footer as unstyled list of links
- How do I enable the text view of the side admin bar
- Where is admin bar supposed to appear? [closed]
- Why do you add wp_footer() in footer file to add an admin bar in the top of the page?
- How to remove logged user profile href link
- Remove admin bar “My Sites” link from contributor roll
- How to disable or customize admin bar in back-end
- How do you disable the admin-bar.css
- Customize WordPress admin-bar
- Disable the admin bar / probleme with responsive menu
- Why toolbar would not be visible in the frontend but visible in the admin?
- Disable Admin Bar for specific content
- Top admin tool bar not displaying for “Editor” user role
- How to change username in wp admin bar
- how to hide top bar button on /wp-admin/edit.php
- How to add Mark as private to WordPress Admin Bar for Posts
- When admin is logged in, admin-bar-rtl.min.css is not loaded on website view (the admin-bar is shown in the footer without CSS)
- disable wp admin bar for customers logged in
- two different home is showing inside my dashboard?
- Admin Bar items active only on plugin page
- Missing Toolbar/Admin Bar on subdomain page using WordPress integration
- Top Admin Bar Never Shows Up
- Admin and Toolbar on the bottom, how to dropup menus?
- Display Admin Bar when Logged
- Why do previews work in one browser, but not another?
- Disabling the Admin Bar | Where does code go?
- Add code to admin bar only
- Why do my posts look like they are in “admin editing mode”?
- Adding more links to the tool bar
- WordPress replace howdy function now throwing deprecated warning
- Modify Admin Bar Link
- Show admin bar only for some USERS roles
- Remove WordPress Toolbar buttons
- How to Remove All Admin Bar Menu Items?
- Edit specific nodes in WP_Admin_Bar
- Manually add admin bar
- How to keep theme layout the same when admin gray bar is present?
- I changed “Howdy” in the admin bar in the dashboard, but when I’m viewing the site it still says Howdy!
- Adding the Admin Bar to a page with a custom template
- Where is this inline CSS code [closed]
- wp_before_admin_bar_render action not working in back office
- What determines whether admin toolbar is shown to a logged-in user?
- WordPress Admin Bar Covering & Overlapping Fixed Menu Header [closed]
- Adminbar Missing “Edit Page”
- What hook is used to display the admin_bar on the front end?
- Set different custom menu items for different user roles
- Static admin page for all multisite users
- Is there a way to optionally hide the title bar when logged in?
- toolbar not visible on pages using front-page template
- How to Find The Email of a WP Admin Account
- Admin bar is disabled in front
- Different Admin language
- Show admin bar to editors with Buddypres
- missing admin bar and widget in a template
- How to disable users to view Other pages
- How can I modify text in admin bar?
- Custom Div with links on Admin Bar
- Custom admin bar css on front end bug