hide menu in /wp-admin/
-
Hi , I want to hide menu in /wp-admin/ for shop manager, but my code doesn’t work.
function custom_remove_menu_items() {
if (current_user_can(‘shop_manager’)) {
remove_menu_page(‘variation-price-display’);}
}
add_action(‘admin_menu’, ‘custom_remove_menu_items’, 999);
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.