php rimuovere unoopiùelementidalla barra di wp。里夫。 https://digwp.com/2011/04/admin-bar-tricks/
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php rimuovere unoopiùelementidalla barra di wp。里夫。 https://digwp.com/2011/04/admin-bar-tricks/相关的知识,希望对你有一定的参考价值。
<?php
// remove links/menus from the admin bar
function mytheme_admin_bar_render() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('comments');
}
add_action( 'wp_before_admin_bar_render', 'mytheme_admin_bar_render' );
/*
my-account – link to your account (avatars disabled)
my-account-with-avatar – link to your account (avatars enabled)
my-blogs – the "My Sites" menu if the user has more than one site
get-shortlink – provides a Shortlink to that page
edit – link to the Edit/Write-Post page
new-content – link to the "Add New" dropdown list
comments – link to the "Comments" dropdown
appearance – link to the "Appearance" dropdown
updates – the "Updates" dropdown
*/
以上是关于php rimuovere unoopiùelementidalla barra di wp。里夫。 https://digwp.com/2011/04/admin-bar-tricks/的主要内容,如果未能解决你的问题,请参考以下文章