如何从页面中删除除第一个链接之外的重复链接
我对某些内容有问题,这些内容一次又一次地具有相同的链接,所以我想删除除单个链接之外的所有重复链接,有人知道如何执行此操作吗???
这是我的代码,它删除所有链接
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');
基本上我需要这个用于WordPress,过滤内容并删除重复的链接应该只有一个链接。
I have a problem with some contents, which have the same link again and again, so i want to remove all duplicate links except a single, have anyone idea how to do this????
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');
basically i need this for wordpress, to filter the contents and remove duplicate links should have only a single link.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 preg_replace_callback:
输入:
输出:
Using preg_replace_callback:
Input:
Output: