Answers:
remove_menu
管理菜单栏有一个钩子。
要挂接到的类$wp_admin_bar
,您可以在此处看到remove函数并对其进行测试,因为它上没有任何文档(第86行),它应与子菜单ID一起使用。
http://core.trac.wordpress.org/browser/tags/3.2.1/wp-includes/class-wp-admin-bar.php
由于您似乎不相信我,这里是代码......
function ya_do_it_admin_bar_remove() {
global $wp_admin_bar;
/* **edit-profile is the ID** */
$wp_admin_bar->remove_menu('edit-profile');
}
add_action('wp_before_admin_bar_render', 'ya_do_it_admin_bar_remove', 0);
$child = array( 'id' => $id, 'title' => $title, 'href' => $href );
WordPress引入了新的stufs(节点)。
//http://codex.wordpress.org/Function_Reference/get_nodes
//http://codex.wordpress.org/Function_Reference/add_node
add_action( 'admin_bar_menu', 'remove_my_account', 999 );
function remove_my_account( $wp_admin_bar ) {
$wp_admin_bar->remove_node( 'my-account' );
}
add_action( 'admin_bar_menu', 'add_logout', 999 );
function add_logout( $wp_admin_bar ) {
$args = array(
'id' => 'logout', // id of the existing child node (New > Post)
'title' => 'Se déconnecter', // alter the title of existing node
'parent' => 'top-secondary', // set parent
);
$wp_admin_bar->add_node( $args );
}
我不确定是否可以删除它(尚未选中),但是使用css隐藏编辑个人资料链接可以达到相同的效果。列表项具有一个ID“ wp-admin-bar-edit-profile”,您可以使用该ID隐藏它。这是管理栏中使用的html:
<li id="wp-admin-bar-edit-profile" class="">
<a href="http://www.example.com/wp-admin/profile.php">Edit My Profile</a>
</li>
我正在使用以下CSS:
#wp-admin-bar-edit-profile { display: none }
这会将链接隐藏在管理栏中,而没有任何其他链接。将此css片段添加到主题的style.css中,当您查看网站时,该链接将隐藏在管理栏中。在查看WordPress后端时,将其隐藏在管理栏中会涉及更多内容,并且可能没有意义,因为左侧菜单中的个人资料链接也是如此。