在 WordPress 中,如何添加指向左上角仪表板菜单框的链接?

发布于 2024-09-16 11:04:25 字数 62 浏览 4 评论 0原文

我找到了一种添加“仪表板小部件”的方法,但这不是我想要的。我想要的只是左上角第一个菜单中显示“仪表板”的链接。

I found a way to add a "Dashboard Widget", but that is not what I want. All I want is a link in the first menu on the top left that says "Dashboard".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一梦浮鱼 2024-09-23 11:04:25

我想通了。
将此代码放入 wp-content/themes/your-theme-name/functions.php

function new_link_display() {
    echo "Echo html code for the page";
}
function new_link_page() {
    if (function_exists('add_submenu_page') )
        add_submenu_page('index.php', __('New Like Label'), __('New Link Label'), 'manage_options', 'new-link-display', 'new_link_display');
}
add_action('admin_menu', 'new_link_page');

I figured it out.
Put this code in the wp-content/themes/your-theme-name/functions.php

function new_link_display() {
    echo "Echo html code for the page";
}
function new_link_page() {
    if (function_exists('add_submenu_page') )
        add_submenu_page('index.php', __('New Like Label'), __('New Link Label'), 'manage_options', 'new-link-display', 'new_link_display');
}
add_action('admin_menu', 'new_link_page');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文