我正在尝试重定向我的wordpress页面。此代码运行良好。
<a href="\'. get_permalink(\'dashboard\') .\'" class="wpum-profile-account-edit">\'. __(\' (Edit Account)\', \'wpum\') .\'</a>
但我正在尝试使用页面值“dashboard/?dashboard=myprofile”重定向。但这个代码不起作用
<a href="\'. get_permalink(\'dashboard/?dashboard=myprofile\') .\'" class="wpum-profile-account-edit">\'. __(\' (Edit Account)\', \'wpum\') .\'</a>
最合适的回答,由SO网友:Venkatesh 整理而成
使用此代码并检查<a href="\'. get_permalink(\'dashboard\') .\'?dashboard=myprofile" class="wpum-profile-account-edit">\'. __(\' (Edit Account)\', \'wpum\') .\'</a>
. 在get\\u permalink()函数中,您只能通过传递帖子ID或页面标题来获取页面url,但您添加了其他参数,因此无法获取正确的url。因此,我对代码进行了编辑,以便在函数之后附加额外的参数。