从未使用过此插件。WordPress有一个名为make_clickable()
这可能对你有帮助。
示例:
$string = "This is a long text that contains some links like http://www.wordpress.org and http://www.wordpress.com .";
echo make_clickable($string);
输出:
This is a long text that contains some links like <a href="http://www.wordpress.org" rel="nofollow">http://www.wordpress.org</a> and <a href="http://www.wordpress.com" rel="nofollow">http://www.wordpress.com</a> .