我需要在URL中添加用户名。这是为了将特定用户重定向到特定页面。我在函数中添加了以下代码。我的主题文件夹中的php文件:
function my_redirect_function() {
if ( is_user_logged_in() ) {
global $userdata;
get_currentuserinfo();
$username = $userdata->user_login;
$url = \'https://myurl.com/user/‘.$username;
wp_redirect($url);
exit;
}
}
add_action( \'template_redirect\', \'my_redirect_function\' );
但我得到以下错误:
分析错误:语法错误,在/home/instantt/public\\u html/wp content/themes/panoral/functions中出现意外的“template\\u redirect”(T\\u STRING)。php在线490
请协助