是否可能在加载所有插件后,在主题中执行被调用的add\\u filter?
我使用one 从repository到的插件可以添加为库项目定义自定义目标链接的功能,但这一个包含了额外的东西,这打破了我的角度路由,所以我想删除主题。
这条规则应该行得通,我已经过测试了。转储html显示插件覆盖在此状态下不存在。
我的职能中有。php
function attachment_link_sanitize($html) {
$html = preg_replace("/class=\\"no-lightbox\\" target=\\"_self\\"/", "", $html);
return $html;
}
add_filter(\'wp_get_attachment_link\', \'attachment_link_sanitize\',PHP_INT_MAX+1);
Sorry for disturbing I\'ve been checking the plugins JS and seems like everything comes from Jquery