批量自动删除WordPress内容中超链接

我们在复制外部的文章贴到WordPress内容中是不是有很多自带超链接的?那我们是否有办法批量去掉这些链接?这里我们可以利用wordpress自带的add_filter(‘the_content’, ‘方法名’);来解决这个问题。

批量自动删除WordPress内容中超链接
//批量去除内容链接 By:https://www.cnwper.com/auto-del-links.html
function del_links_texts($text){
$text=preg_replace("/<a[^>]*>(.*?)<\/a>/is", "$1", $text);
return $text;
}
add_filter('the_content', 'del_links_texts');

将代码添加到 functions.php 中,这样我们保存发布文章的时候会自动去除内容中的超链接。但是这个还不算友好,比如自身URL的链接应该不去掉才够完美。

投票 post
© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享