2024年10月13日 建站教程
wordpress如何屏蔽(过滤)文章中所有超链接(a标签),下面web建站小编给大家详细介绍一下具体实现代码!
打开主题下functions.php
文件,新增以下代码:
function replace_text_wps($text){ $text=preg_replace("/<a[^>]*>(.*?)<\/a>/is", "$1", $text); return $text; } add_filter('the_content', 'replace_text_wps');
Ps:加入以上代码,内链也会自动屏蔽掉~
本文链接:http://so.lmcjl.com/news/15299/