hide for role user in wordpress admin
-
How hide for shop manager on page /wp-admin/ top dashbord button “UpdraftPlus”
function remove_add_menu_item_from_admin_bar() {
if (current_user_can(‘shop_manager’)) {
global $wp_admin_bar;
$wp_admin_bar->remove_node(‘updraft_admin_node’);
}
}
add_action(‘admin_bar_menu’, ‘remove_add_menu_item_from_admin_bar’, 100);
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.