AI Verified

Name

Conceal WordPress Dashboard Elements Depending on User Role

About

An enhanced version of existing code that allows you to dynamically conceal elements in the WordPress Sidebar according to the user's assigned role.

Language

PHP

Rating

Voted: 0 by 0 user(s)

How to Setup Snippet

Check the user role and what you want to show to them. Always leave the Administrator as able to see all.

Codevault

WDXTechnologies

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.4

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

22/12/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Conceal WordPress Dashboard Elements Depending on User Role

 
                    
1function remove_dashboard_menu_items() {
2 global $menu;
3 $user = wp_get_current_user();
4 $user_role = $user->roles[0]; // Get the first user role assigned to the user
5 
6 if ($user_role == 'administrator') {
7 // Admin can see all menu items
8 return;
9 } elseif ($user_role == 'editor') {
10 // Editors can see Pages and Posts
11 unset($menu[25]); // Removes "Comments"
12 unset($menu[60]); // Removes "Appearance"
13 unset($menu[65]); // Removes "Plugins"
14 unset($menu[70]); // Removes "Users"
15 unset($menu[75]); // Removes "Tools"
16 unset($menu[80]); // Removes "Settings"
17 remove_menu_page('index.php'); // Removes the Dashboard home page
18 } else {
19 // All other users see limited menu items
20 unset($menu[5]); // Removes "Posts"
21 unset($menu[10]); // Removes "Media"
22 unset($menu[20]); // Removes "Pages"
23 unset($menu[25]); // Removes "Comments"
24 unset($menu[60]); // Removes "Appearance"
25 unset($menu[65]); // Removes "Plugins"
26 unset($menu[70]); // Removes "Users"
27 unset($menu[75]); // Removes "Tools"
28 unset($menu[80]); // Removes "Settings"
29 remove_menu_page('index.php'); // Removes the Dashboard home page
30 }
31}
32add_action('admin_menu', 'remove_dashboard_menu_items');

0

Related Snippets

Please see some snippets below related to this snippet..

WordPress Admin

AI Verified

0

Hide "Screen Options" on the Admin Dashboard

Added: 1 year ago

Last Updated: 1 year ago

This snippet hides the "Screen Options" tab for all users except you. Now, you can stop clients from filling the dashboard with all the spammy junk which is generated by many plugins. This snipp...

WordPress Admin

AI Verified

0

Hide ‘Screen Options’ Tab

Added: 1 year ago

Last Updated: 1 year ago

WordPress Admin

AI Verified

0

CLOUD Meister: Cleanup UI

Added: 1 year ago

Last Updated: 1 year ago

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

0

Show 'NEW' Badges for Recently Added Items in WooCommerce

Added: 8 months ago

Last Updated: 8 months ago

This code snippet adds a "NEW!" badge to products in WooCommerce, indicating that they are newly added. The badge is displayed both on the product archive pages and the single product template for a s...

WooCommerce

AI Verified

0

Integrate a 'Sold' Column into the WordPress Dashboard's Product Section

Added: 10 months ago

Last Updated: 10 months ago

Are you interested in knowing the quantity of items you have sold?

WooCommerce

AI Verified

0

Transforming Coupon Codes into Discount Codes in WooCommerce

Added: 9 months ago

Last Updated: 9 months ago

In certain situations, the term "coupon" may be inappropriate. To address this, we've developed several guides suggesting alternative synonyms for "coupon." This specific guide focuses on replacing th...