上山打老虎 发表于 2021-7-16 09:27:15

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);
}


文档来源:脚本之家https://www.jb51.net/cms/133897.html
页: [1]
查看完整版本: wordpress评论者链接在新窗口中打开的方法