WordPress菜单添加到插件的链接

时间:2018-10-20 19:15:07

标签: wordpress

当管理员登录并位于前端区域时,快捷菜单会有一个小的下拉列表。如何在此处添加指向插件页面的链接?

enter image description here

1 个答案:

答案 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