评论中的作者页面链接与帖子中的不同?

时间:2013-07-20 作者:Johan

当我hover 在我的comments, 它显示如下链接http://mysitenameeeee.com/?author=24

单击后,我可以/author/authorname, 这很好,但我不希望在悬停时链接是author=24。如果我悬停post author link, 它显示到的正确链接author.php. 有什么区别,为什么以及如何解决?

以下是片段:

<a rel="author" href ="<?php bloginfo(\'url\'); ?>/?author=<?php echo $comment->user_id ?>"><?php echo $comment->comment_author?></a>

1 个回复
最合适的回答,由SO网友:fuxia 整理而成

使用get_comment_author_link() 而不是<a href … </a>:

echo get_comment_author_link();

结束

相关推荐

Get Authors Role

我使用的是管理角色和2个自定义角色。关于作者。php我希望能够放置该用户的角色。我用这个在文本中引出角色$curauth = $wp_query->get_queried_object(); $user_id = $curauth->ID; $user = new WP_User( $user_id ); if ( !empty( $user->roles ) && is_array( $user->roles ) ) { f