1、打开主题目录中的functions.php;
2、在加下以下代码:
//评论者的链接新窗口打开3、保存,这次再刷新有评论的页面,点击URL看看是不是在新的窗口打开了。
function comment_author_link_window() {
global $comment;
$url = get_comment_author_url();
$author = get_comment_author();
if ( empty( $url ) || ‘http://’ == $url )
$return = $author;
else
$return = “$author”;
return $return;
}
add_filter(‘get_comment_author_link’, ‘comment_author_link_window’);
4、完成。