我正在开发一个Wordpress
网站。新帖子使用
目标=" _blank"
自动。我希望它能从帖子中删除。我试图修改 funcitons.php ,但我仍然没有找到合适的代码......
我怎样才能实现这一目标?
答案 0 :(得分:1)
绝对不是最漂亮的方式,但这应该做,直到找到将目标添加到外部链接的代码
add_filter('the_excerpt', 'myfilter', 15);
add_filter('the_content', 'myfilter', 15);
function myfilter($content)
{
return preg_replace('#target=["\']?_blank["\']?#mi','',$content);
}