我正在向 WordPress 主题的function.php
.
我想让它从标记中删除链接,如下所示:
function clean_content($content) { <br>
$content = preg_replace('some regex goes here, but what?', '', $content);
return $content;
}
add_filter('the_content', 'clean_content', 1);
什么是剥离链接但保留其余标记的正则表达式,但仅适用于来自某些域的链接?
例如,我想删除属性中包含google.com
的所有链接href
,但保留标记和文本(例如:<img>
用于图像链接等)。
谢谢,谢谢,谢谢!