在折腾了Mnews主题评论人Gravatar的人像问题后,我发现了一个问题:未注册用户在留言时会留下网站链接,点击评论人的名字不会打开网站链接,而是跳转到作者主页,这显然是一个bug。
comment-ajax.php
修改comment-ajax.php文件中大约22行代码:
<span class="author_name"><?php global $salong; if($user_id){ echo '<a href="'.get_author_posts_url($user_id).'" class="url">'.$user_name.'</a>'; }else if ($salong['switch_link_go']) {commentauthor();} else {comment_author_link();} ?></span><?php _e( '发布于:', 'salong' ); ?> <time class="datetime"><?php echo get_comment_date().' '.get_comment_time() ?></time>
替换成以下代码:
<span class="author_name"><?php global $salong; if($user_id){ echo '<a href="'.get_comment_author_url().'" rel="external nofollow" class="url">'.$user_name.'</a>'; }else if ($salong['switch_link_go']) {commentauthor();} else {comment_author_link();} ?></span><?php _e( '发布于:', 'salong' ); ?> <time class="datetime"><?php echo get_comment_date().' '.get_comment_time() ?></time>
效果截图