Created
February 17, 2014 15:31
-
-
Save niraj-shah/9052674 to your computer and use it in GitHub Desktop.
Complete version of custom toolbar plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @package MyToolbar | |
*/ | |
/* | |
Plugin Name: MyToolbar | |
Plugin URI: http://www.webniraj.com | |
Description: This plugin creates a custom toolbar | |
Version: 1.0 | |
Author: Niraj Shah | |
Author URI: http://www.webniraj.com/wordpress/ | |
*/ | |
// function to run before menu is rendered | |
add_action( 'wp_before_admin_bar_render', 'preload_my_toolbar' ); | |
// function to add items to toolbar | |
add_action( 'admin_bar_menu', 'my_toolbar' ); | |
// forces toolbar to show to all users | |
add_filter( 'show_admin_bar', '__return_true' ); | |
// placeholder function | |
function preload_my_toolbar() { | |
global $wp_admin_bar; | |
// remove WordPress logo | |
$wp_admin_bar->remove_node('wp-logo'); | |
// remove search button | |
$wp_admin_bar->remove_node('search'); | |
} | |
// placeholder function | |
function my_toolbar() { | |
global $wp_admin_bar; | |
// add a single link | |
$wp_admin_bar->add_node( array( | |
'id' => 'my-link-one', | |
'title' => 'Item 1', | |
'href' => site_url() | |
) ); | |
// add a item | |
$wp_admin_bar->add_node( array( | |
'id' => 'my-search', | |
'title' => 'Search', | |
'href' => '#', | |
'parent' => 'top-secondary' | |
) ); | |
// add a sub-item | |
$wp_admin_bar->add_node( array( | |
'id' => 'my-google-search', | |
'title' => 'Google', | |
'parent' => 'my-search', | |
'href' => 'http://www.google.com', | |
'meta' =>array( 'target' => '_blank' ) | |
) ); | |
// add another sub-item | |
$wp_admin_bar->add_node( array( | |
'id' => 'my-bing-search', | |
'title' => 'Bing', | |
'parent' => 'my-search', | |
'href' => 'http://www.bing.com', | |
'meta' =>array( 'target' => '_blank' ) | |
) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment