删除菜单项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除菜单项相关的知识,希望对你有一定的参考价值。
Remove menu items from the wordpress admin
/** * to remove items from the wordpress admin menu uncomment them from the list * * */ function remove_menus () { global $menu; __('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('Plugins'), __('Gallery') ); { { } } } add_action('admin_menu', 'remove_menus');
以上是关于删除菜单项的主要内容,如果未能解决你的问题,请参考以下文章