答案 0 :(得分:1)
function my_tweaked_admin_bar() {
global $wp_admin_bar;
$wp_admin_bar->add_menu( array(
'id' => 'plugins',
'title' => 'Plugins',
'href' => get_site_url().'/wp-admin/plugins.php',
'parent'=> 'site-name'
));
}
add_action( 'wp_before_admin_bar_render', 'my_tweaked_admin_bar' );
只需将此代码粘贴到当前主题目录中的functions.php中即可。
有关更多信息,请检查WordPress Codex: https://codex.wordpress.org/Plugin_API/Action_Reference/wp_before_admin_bar_render