我已经解决了!我使用“wp\\u nav\\u menu\\u items”挂钩自定义菜单的链接。然而,它实际上并没有具体回答我的问题,但它解决了我的问题。以下是“简介”页面的示例:-
add_filter( \'wp_nav_menu_items\', \'set_profile_links\', 10, 2 );
function set_profile_links( $items, $args ) {
$items = \'<li ><a href="http://localhost/wordpress/index.php/dashboard">Dashboard</a></li>\';
$items .= \'<li id="current-page-menu"><a href="http://localhost/wordpress/index.php/my-account">PROFILE</a></li>\';
return $items;
}