致力于为用户提供真实的
主机测评数据及优惠信息

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

找到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);
}
赞(0) 打赏
未经允许不得转载:爱主机 » wordpress评论者链接在新窗口中打开的方法
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址