我正在使用此代码显示当前用户的作者页面。但是,如果用户的用户名中有空格,则无法找到URL。如果作者的用户名中有空格,如何让代码放置“-”。谢谢
<?php
if ( is_user_logged_in() ) {
echo \'<a href="\' . home_url() . \'/author/\' . get_the_author_meta( \'user_login\', wp_get_current_user()->ID ) . \'"> My personal page</a>\';
} else {
echo \'<a href="\' . wp_login_url() . \'" title="Login">Login</a>\';
}
?>