wordpress评论者链接在新窗口中打开的方法
wordpress评论者链接在新窗口中打开的方法
发布时间:2016-12-23 来源:查字典编辑
摘要:找到wp-includes/comment-template.php文件中if(empty($url)||'http://'==$url)$...

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

if ( empty( $url ) || 'http://' == $url )

$return = $author;

else

$return = "<a href='$url' rel='external nofollow'>$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' target='_blank'>$author</a>";

return apply_filters('get_comment_author_link', $return);

}

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新WordPress学习
热门WordPress学习
CMS教程子分类