评论

收藏

[WordPress] wordpress评论者链接在新窗口中打开的方法

建站程序 建站程序 发布于:2021-07-16 09:27 | 阅读数:567 | 评论:0

找到wp-includes/comment-template.php文件中

代码如下:
if ( empty( $url ) || 'http://' == $url )
 $return = $author;
else
 $return = "<a href='$url' rel='external nofollow' class='url'>$author</a>";
return apply_filters('get_comment_author_link', $return);
}
给$return值上加个target=’_blank’

代码如下:
if ( empty( $url ) || 'http://' == $url )
 $return = $author;
else
 $return = "<a href='$url' rel='external nofollow' class='url' target='_blank'>$author</a>";
return apply_filters('get_comment_author_link', $return);
}

关注下面的标签,发现更多相似文章