这是一个创建于 4032 天前的主题,其中的信息可能已经有所发展或是发生改变。
用于wordpress的正文网址替换为链接,自己写了这段没问题,但是会影响到本来就是链接的网址,而且图片地址也被替换了。。。
function autolink($content)
{
$content = eregi_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_\+.~#?&//=]+)', '<a href="\1" target="_blank" rel="nofollow">\1</a>', $content);
if( strpos($content, "http") === FALSE ){
$content = eregi_replace('(www.[-a-zA-Z0-9@:%_\+.~#?&//=]+)', '<a href="http://\1" target="_blank" rel="nofollow">\1</a>', $content);
}else{
$content = eregi_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_\+.~#?&//=]+)', '\1<a href="http://\2" target="_blank" rel="nofollow">\2</a>', $content);
}
return $content;
}
add_filter('the_content', 'autolink');