我找到了添加“仪表板小工具”的方法,但那是不是我想要的。我想要的只是左上角第一个菜单中的“Dashboard”链接。
答案 0 :(得分:2)
我明白了。
将此代码放在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');