我对一些内容存在问题,这些内容又一次有同样的联系,因此,除单一内容外,想要消除所有重复联系,谁会想如何这样做?
here is my code which remove all links
function anchor_remover($page) {
$filter_text = preg_replace("|<<blink>a *<blink>href=<blink>"(.*)">(.*)</a>|","\2",$page);
return $filter_text;
}
add_filter( the_content , anchor_remover );
基本上需要文字压缩、过滤内容和消除重复链接,这只能有一个单一链接。