在折腾了 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).'" 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>
替换成以下代码:
<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>
转载请注明:汇站网 » 解决获取 Mnews 话题评论员网址的问题