WordPress 常用函数 / make_clickable

简介

将纯文本中的 URI 转换成 HTML 链接。

将转换 URI,www,FTP 和邮箱地址,并且修正链接中的链接。

用法

<?php make_clickable( $text ) ?>

参数

$text
(string) (required) 将转换成可点击的文本。
Default: None

返回值

(string)
链接转换成可点击的 HTML 代码。

实例

$string = "Denis 的博客是 http://blog.wpjam.com/ ";
echo make_clickable($string);

输出结果:

Denis 的博客是 <a href="http://blog.wpjam.com/" rel="nofollow">http://blog.wpjam.com/</a>

修改记录

Since: 0.71

源文件

wp-includes/formatting.php