12

How to Add WPCodeBox to Your WordPress Admin Bar

Powered by WPCodeBox

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);

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.