How to Add a Plugins Link to the WordP...
Easily add a direct link to the WordPress plugins page in your admin bar for quick ac...

WPCodeBox
329

Enhance your WordPress admin bar by adding a WPCodeBox link. This snippet conveniently places a “[WPCB]” shortcut in your top admin bar, opening in a new browser tab for quick access to WPCodeBox.
<?php
//This snippet will add WPCodeBox (abbreviated as [WPCB]) to the WordPress top admin bar
add_action( 'admin_bar_menu', function($wp_admin_bar2) {
$wp_admin_bar2->add_node( array(
'id' => 'wpcodebox_adminbar',
'title' => '[WPCB]',
'href' => admin_url( 'admin.php?page=wpcb_menu_page_php' ),
'meta' => array( 'target'=>'_blank' )
) );
}, 999);





