Skip to content

Instantly share code, notes, and snippets.

@annalinneajohansson
Created February 20, 2014 17:23
Show Gist options
  • Save annalinneajohansson/9118870 to your computer and use it in GitHub Desktop.
Save annalinneajohansson/9118870 to your computer and use it in GitHub Desktop.
Add Toolbar Menus
<?php
function hip_toolbar_items() {
global $wp_admin_bar;
$args = array(
'id' => 'id',
'title' => __( 'Title', 'textdomain' ),
'href' => admin_url(),
);
$wp_admin_bar->add_menu( $args );
}
}
add_action( 'wp_before_admin_bar_render', 'hip_toolbar_items', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment