{"id":370833,"date":"2023-02-28T11:02:45","date_gmt":"2023-02-28T11:02:45","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=370833"},"modified":"2024-10-15T11:42:38","modified_gmt":"2024-10-15T11:42:38","slug":"how-to-remove-admin-menu-item-in-wordpress","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/","title":{"rendered":"How to remove Admin Menu item in WordPress"},"content":{"rendered":"\n<p>WordPress is full of fun things, we can manipulate the things according to our needs from the dashboard to prevent user get confused. We seen, how to add <a href=\"https:\/\/webkul.com\/blog\/how-to-add-menu-in-wordpress-admin-panel\/\">Menu<\/a> and <a href=\"https:\/\/webkul.com\/blog\/how-to-add-submenu-in-wordpress-admin-panel\/\">Submenu<\/a> in WordPress admin panel in our previous blog. <a href=\"https:\/\/webkul.com\/woocommerce-development\/\">WordPress<\/a> admin dashboard full with lots of <a href=\"https:\/\/codex.wordpress.org\/Administration_Menus\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">menu and submenu<\/a> like Dashboard, Media, Post, Page, Comment, Appearance, Plugins, User and many more. In some scenario we need to remove the menu from the admin panel like you dont need 3rd party plugin menu either default menu.<\/p>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Function for remove menu item<\/h3>\n<\/div><\/div>\n\n\n\n<p><strong>remove_menu_page(&nbsp;<em>string<\/em>&nbsp;$menu_slug&nbsp;)<\/strong> <\/p>\n\n\n\n<p>This will removes a top-level admin menu.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Example usage:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>remove_menu_page( 'tools.php' )<\/code><\/li>\n\n\n\n<li><code>remove_menu_page( 'plugin_menu_slug' )<\/code><\/li>\n<\/ul>\n<\/blockquote>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Parameters<\/h3>\n<\/div><\/div>\n\n\n\n<p><code>$menu_slug<\/code>&nbsp;string&nbsp;Required<\/p>\n\n\n\n<p>The slug of the menu.<\/p>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Return value<\/h3>\n<\/div><\/div>\n\n\n\n<p>array|false&nbsp;The removed menu on success, false if not found.<\/p>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Example<\/h3>\n<\/div><\/div>\n\n\n\n<p><strong>Remove contact form 7 menu from admin panel <\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">add_action( &#039;admin_init&#039;, function () {\n    remove_menu_page( &#039;edit.php?post_type=participants-database&#039; );\n    \/\/OR\n    remove_menu_page( &#039;wpcf7&#039; );\n});<\/pre>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"781\" height=\"379\" data-id=\"371049\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item.png\" alt=\"remove-menu-item\" class=\"wp-image-371049\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item.png 781w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item-300x146.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item-250x121.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item-768x373.png 768w\" sizes=\"(max-width: 781px) 100vw, 781px\" loading=\"lazy\" \/><\/figure>\n<\/figure>\n\n\n\n<p><strong>Remove Menu items by page<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/**\n * Removes some menus by page.\n *\/\nif ( ! function_exists( &#039;deregister_post_type&#039; ) ) {\n function wpdocs_remove_menus(){\n   remove_menu_page( &#039;index.php&#039; );                  \/\/Dashboard\n   remove_menu_page( &#039;jetpack&#039; );                    \/\/Jetpack* \n   remove_menu_page( &#039;edit.php&#039; );                   \/\/Posts\n   remove_menu_page( &#039;upload.php&#039; );                 \/\/Media\n   remove_menu_page( &#039;edit.php?post_type=page&#039; );    \/\/Pages\n   remove_menu_page( &#039;edit-comments.php&#039; );          \/\/Comments\n   remove_menu_page( &#039;themes.php&#039; );                 \/\/Appearance\n   remove_menu_page( &#039;plugins.php&#039; );                \/\/Plugins\n   remove_menu_page( &#039;users.php&#039; );                  \/\/Users\n   remove_menu_page( &#039;tools.php&#039; );                  \/\/Tools\n   remove_menu_page( &#039;options-general.php&#039; );        \/\/Settings\n }\n}\nadd_action( &#039;admin_menu&#039;, &#039;wpdocs_remove_menus&#039; );\n?&gt;<\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>do_action( &#8216;admin_init&#8217; )<\/p>\n<cite>Fires as an admin screen or script is being initialized. ( <code><strong>admin_init<\/strong><\/code>&nbsp;is fires  before any other hook when a user accesses the admin arena.) <br><\/cite><\/blockquote>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Additional<\/h3>\n<\/div><\/div>\n\n\n\n<p><strong>Remove post type from wordpress<\/strong><\/p>\n\n\n\n<p>Suppose we have a registered post type named &#8220;blog&#8221; and need to remove this from the admin panel then just follow these codes.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">add_action( &#039;init&#039;, &#039;deregister_post_type&#039; );\nif ( ! function_exists( &#039;deregister_post_type&#039; ) ) {\n\tfunction deregister_post_type() {\n\t\tunregister_post_type( &#039;blog&#039; );\n\t}\n}<\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>do_action( &#8216;init&#8217; )<\/p>\n<cite>This will fires after WordPress has been finished the  loading but before any headers are sent.<br><\/cite><\/blockquote>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"781\" height=\"379\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-post-type.png\" alt=\"remove-post-type\" class=\"wp-image-371050\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-post-type.png 781w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-post-type-300x146.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-post-type-250x121.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-post-type-768x373.png 768w\" sizes=\"(max-width: 781px) 100vw, 781px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p><strong>Remove submenu page<\/strong> <strong>items<\/strong><\/p>\n\n\n\n<p><code>remove_submenu_page( 'plugin_menu_slug', 'plugin_submenu_slug' )<\/code><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/**\n * Remove the Widgets submenu page.\n *\/\nfunction remove_the_wp_menu() {\n\t$page = remove_submenu_page( &quot;edit.php?post_type=blog&quot;, &#039;add-new&#039; );\n}\nadd_action( &#039;admin_menu&#039;, &#039;remove_the_wp_menu&#039;, 999 );<\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>add_action -&gt; Add a callback function to your action hook.<\/p>\n\n\n\n<p>admin_menu -&gt; Fires earlier than the admin menu is loaded in Admin<\/p>\n\n\n\n<p><a href=\"https:\/\/developer.wordpress.org\/reference\/functions\/add_action\/\" target=\"_blank\" rel=\"noreferrer noopener\">add_action<\/a> -&gt; <a href=\"https:\/\/developer.wordpress.org\/reference\/hooks\/admin_menu\/\" target=\"_blank\" rel=\"noreferrer noopener\">admin_menu<\/a><\/p>\n<\/blockquote>\n\n\n\n<p>If you need custom <a href=\"https:\/\/webkul.com\/wordpress-theme-development-services\/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress Development services<\/a> then feel free to <a href=\"https:\/\/webkul.com\/contacts\" target=\"_blank\" rel=\"noreferrer noopener\">reach us<\/a>&nbsp;and also explore our exclusive range of WordPress&nbsp;<a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\">WooCommerce Plugins<\/a>.<\/p>\n\n\n\n<p>!!Have a Great Day Ahead!!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>WordPress is full of fun things, we can manipulate the things according to our needs from the dashboard to prevent user get confused. We seen, how to add Menu and Submenu in WordPress admin panel in our previous blog. WordPress admin dashboard full with lots of menu and submenu like Dashboard, Media, Post, Page, Comment, <a href=\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":349,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1260],"tags":[1258,13679,1501],"class_list":["post-370833","post","type-post","status-publish","format-standard","hentry","category-wordpress","tag-wordpress","tag-wordpress-development-services","tag-wordpress-plugin"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to remove Admin Menu item in WordPress - Webkul Blog<\/title>\n<meta name=\"description\" content=\"WordPress is full of fun things, we can remove and add menu items from the dashboard to prevent user get confused from others.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to remove Admin Menu item in WordPress\" \/>\n<meta property=\"og:description\" content=\"WordPress is full of fun things, we can remove and add menu items from the dashboard to prevent user get confused from others.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-28T11:02:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-15T11:42:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/how-to-remove-admin-menu-item-in-wordpress.png\" \/>\n\t<meta property=\"og:image:width\" content=\"936\" \/>\n\t<meta property=\"og:image:height\" content=\"613\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Anikesh Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to remove Admin Menu item in WordPress\" \/>\n<meta name=\"twitter:description\" content=\"WordPress is full of fun things, we can remove and add menu items from the dashboard to prevent user get confused from others.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/how-to-remove-admin-menu-item-in-wordpress.png\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anikesh Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/\"},\"author\":{\"name\":\"Anikesh Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/4da1b58c2629234761688a8028e1d454\"},\"headline\":\"How to remove Admin Menu item in WordPress\",\"datePublished\":\"2023-02-28T11:02:45+00:00\",\"dateModified\":\"2024-10-15T11:42:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/\"},\"wordCount\":295,\"commentCount\":5,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item.png\",\"keywords\":[\"wordpress\",\"wordpress development services\",\"wordpress plugin\"],\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/\",\"name\":\"How to remove Admin Menu item in WordPress - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item.png\",\"datePublished\":\"2023-02-28T11:02:45+00:00\",\"dateModified\":\"2024-10-15T11:42:38+00:00\",\"description\":\"WordPress is full of fun things, we can remove and add menu items from the dashboard to prevent user get confused from others.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item.png\",\"width\":781,\"height\":379,\"caption\":\"remove-menu-item\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to remove Admin Menu item in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/4da1b58c2629234761688a8028e1d454\",\"name\":\"Anikesh Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ee2f1a94eaa8f8ff5ce21477883023b57f58a71189b92d6cd9aa40d9e19ac60d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ee2f1a94eaa8f8ff5ce21477883023b57f58a71189b92d6cd9aa40d9e19ac60d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Anikesh Kumar\"},\"description\":\"Anikesh Kumar- Team Lead, excels in WooCommerce integration, Payment Gateway Integration, and Speed Optimization Services. His proficiency in advanced WooCommerce modules and tools ensures seamless payment method development, delivering optimized, high-performance eCommerce solutions tailored to client needs.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/anikesh-kumar204\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to remove Admin Menu item in WordPress - Webkul Blog","description":"WordPress is full of fun things, we can remove and add menu items from the dashboard to prevent user get confused from others.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"How to remove Admin Menu item in WordPress","og_description":"WordPress is full of fun things, we can remove and add menu items from the dashboard to prevent user get confused from others.","og_url":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-02-28T11:02:45+00:00","article_modified_time":"2024-10-15T11:42:38+00:00","og_image":[{"width":936,"height":613,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/how-to-remove-admin-menu-item-in-wordpress.png","type":"image\/png"}],"author":"Anikesh Kumar","twitter_card":"summary_large_image","twitter_title":"How to remove Admin Menu item in WordPress","twitter_description":"WordPress is full of fun things, we can remove and add menu items from the dashboard to prevent user get confused from others.","twitter_image":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/how-to-remove-admin-menu-item-in-wordpress.png","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Anikesh Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/"},"author":{"name":"Anikesh Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/4da1b58c2629234761688a8028e1d454"},"headline":"How to remove Admin Menu item in WordPress","datePublished":"2023-02-28T11:02:45+00:00","dateModified":"2024-10-15T11:42:38+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/"},"wordCount":295,"commentCount":5,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item.png","keywords":["wordpress","wordpress development services","wordpress plugin"],"articleSection":["WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/","url":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/","name":"How to remove Admin Menu item in WordPress - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item.png","datePublished":"2023-02-28T11:02:45+00:00","dateModified":"2024-10-15T11:42:38+00:00","description":"WordPress is full of fun things, we can remove and add menu items from the dashboard to prevent user get confused from others.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/remove-menu-item.png","width":781,"height":379,"caption":"remove-menu-item"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-remove-admin-menu-item-in-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to remove Admin Menu item in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/4da1b58c2629234761688a8028e1d454","name":"Anikesh Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ee2f1a94eaa8f8ff5ce21477883023b57f58a71189b92d6cd9aa40d9e19ac60d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ee2f1a94eaa8f8ff5ce21477883023b57f58a71189b92d6cd9aa40d9e19ac60d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Anikesh Kumar"},"description":"Anikesh Kumar- Team Lead, excels in WooCommerce integration, Payment Gateway Integration, and Speed Optimization Services. His proficiency in advanced WooCommerce modules and tools ensures seamless payment method development, delivering optimized, high-performance eCommerce solutions tailored to client needs.","url":"https:\/\/webkul.com\/blog\/author\/anikesh-kumar204\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/370833","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/349"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=370833"}],"version-history":[{"count":33,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/370833\/revisions"}],"predecessor-version":[{"id":469008,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/370833\/revisions\/469008"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=370833"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=370833"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=370833"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}