I need to remove the link to the Jetpack settings, but not the links to Omnisearch and Site Stats from the admin menu for everyone not having an administrator role:
For this, I came up with this code:
function remove_posts_menu() {
if (!current_user_can('administrator')) {
remove_submenu_page('admin.php?page=jetpack', 'admin.php?page=jetpack');
}
}
add_action('admin_init', 'remove_posts_menu');
(Reference for the remove_submenu_page()
function)
However, this doesn’t work. I did check that the function is called and so by adding remove_submenu_page('tools.php', 'tools.php');
– when this is added to the function, just after the removal of the Jetpack settings link, the Tools link is removed, but the Broken Link Checker link (of a plugin I installed) is still visible.
What’s the correct way to remove the Jetpack link?
Try this instead:
where the menu slug and submenu slug are
jetpack
.Jetpack’s menu is added quite late, so you’ll need to change the default priority to remove it a bit later (priority 999), like so:
For the people that never want to see jetpack again. The code above unsets the admin menu item from administrators in wp-admin. “admin_init” is a way of calling the action before any other hook is triggered in wp-admin (call back only). Jetpack triggers super late which is why setting a priority of 1 or 11 or 99999 won’t clear it.
*If you’re like me, you’re only using it for free woo commerce tax calculation and you never want to see jetpack again as well as your annoyed about how much resources it takes from your ultra light wordpress..
someone asked if this removes jetpack from taking up resources, no.
If you need further help nuking the resource hog (jetpack) I suggest disabling all the modules in jetpack. youtube video disabling jetpack modules
tony if your like me, and all you use is the zip code tax calculation and hate ads and … jetpack paste this in your functions.php
This seemed to work for me and allowed me to only give access to administrators. You can adapt it to hide any page from the WordPress list here.