{"id":3723,"date":"2017-12-31T13:53:00","date_gmt":"2017-12-31T13:53:00","guid":{"rendered":"https:\/\/purelysupp.com\/wordpress\/?p=3723"},"modified":"2022-10-18T14:44:36","modified_gmt":"2022-10-18T14:44:36","slug":"restrict-wordpress-admin-menu-items-based-on-username","status":"publish","type":"post","link":"https:\/\/purelysupp.com\/wordpress\/code-snippets\/restrict-wordpress-admin-menu-items-based-on-username\/","title":{"rendered":"Restrict WordPress Admin Menu Items Based on Username"},"content":{"rendered":"\n<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to restrict WordPress Admin Menu Items by Username.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function remove_menus()\n{\n    global $menu;\n    global $current_user;\n    get_currentuserinfo();\n\n    if($current_user->user_login == 'clients-username')\n    {\n        $restricted = array(__('Posts'),\n                            __('Media'),\n                            __('Links'),\n                            __('Pages'),\n                            __('Comments'),\n                            __('Appearance'),\n                            __('Plugins'),\n                            __('Users'),\n                            __('Tools'),\n                            __('Settings')\n        );\n        end ($menu);\n        while (prev($menu)){\n            $value = explode(' ',$menu&#91;key($menu)]&#91;0]);\n            if(in_array($value&#91;0] != NULL?$value&#91;0]:\"\" , $restricted)){unset($menu&#91;key($menu)]);}\n        }\/\/ end while\n\n    }\/\/ end if\n}\nadd_action('admin_menu', 'remove_menus');<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to restrict WordPress Admin Menu Items by Username.<\/p>\n","protected":false},"author":1,"featured_media":3547,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","iawp_total_views":8,"wds_primary_category":56,"footnotes":""},"categories":[56,88],"tags":[154,110,84],"class_list":{"0":"post-3723","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-code-snippets","8":"category-wordpress-core","9":"tag-admin-menu","10":"tag-code","11":"tag-wp-core","12":"entry"},"featured_image_src":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2018\/09\/code-snippits-600x400.jpg","featured_image_src_square":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2018\/09\/code-snippits-600x515.jpg","author_info":{"display_name":"Jack Alltrade","author_link":"https:\/\/purelysupp.com\/wordpress\/author\/jacka11trade\/"},"_links":{"self":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3723","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/comments?post=3723"}],"version-history":[{"count":2,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3723\/revisions"}],"predecessor-version":[{"id":10776,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3723\/revisions\/10776"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media\/3547"}],"wp:attachment":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3723"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3723"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3723"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}