This file contains hidden or 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 | |
add_action( 'admin_bar_menu', 'pjh_add_taxonomies_to_toolbar', 999 ); | |
function pjh_add_taxonomies_to_toolbar( $wp_admin_bar ) | |
{ | |
// check permissions | |
if( ! current_user_can( 'manage_categories' ) ) return; | |
global $wp_taxonomies; |