WordPress 隐藏后台右上角用户选项卡中的“编辑个人资料(edit profile)” 0 By 董德多 on 2022年11月3日 WordPress将下面的代码加入到主题的functions.php文件中即可。add_action( 'admin_bar_menu', 'my_admin_menu_unique'); function my_admin_menu_unique($wp_admin_bar) { // remove sub-items by ID $wp_admin_bar->remove_node('edit-profile'); // remove Edit Profile menu } admin_bar_menu profile