Background
The WordPress admin section (/ wp-admin) contains a menu item called tools (between users and settings). It has an intrusive sub-item called "Available Tools", which is a page containing the "Click This" feature.
/wp-admin/tools.php
My question
How to remove this page from the tools section?
What i tried
I tried a function to delete a menu item:
add_action( 'admin_menu', 'my_remove_menu_pages' );
function my_remove_menu_pages() {
remove_menu_page('press-this.php');
}
If I delete tools.php, the entire tool section is deleted, not just the Available Tools section.
I also tried removing the press-this.php file from the directory.
None of the approaches helped.
I can not find a solution anywhere online. Any help would be greatly appreciated.