I want to remove or hide Categories / Tags submenu under Posts in the Admin Menu. I know this works with the themes submenus:
remove_submenu_page( 'themes.php', 'widgets.php' );
The same doesn’t seem to work for posts unfortunately:
remove_submenu_page( 'edit.php', 'edit-tags.php' );
I’m using the admin_menu action: add_action( 'admin_menu', 'function_call' )
Do I need to add something else?
If you want to completely remove categories and tags you can do so like this:
You may also want to remove the meta boxes from the Post Creation page
Thanks to @mbacon40 and to @gmazzap I was able to use this to remove Product Tags and Categories (product_tag and product_cat) from my menu and from the product add/edit pages.
for some reason the edit.php does not work at my setup 5.3
This however works