Home > Enterprise >  How to remove front svg in wordpress 5.9 version
How to remove front svg in wordpress 5.9 version

Time:02-28

How to remove front svg in wordpress 5.9 version

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-dark-grayscale"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></feColorMatrix><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0 0.49803921568627"></feFuncR><feFuncG type="table" tableValues="0 0.49803921568627"></feFuncG><feFuncB type="table" tableValues="0 0.49803921568627"></feFuncB><feFuncA type="table" tableValues="1 1"></feFuncA></feComponentTransfer><feComposite in2="SourceGraphic" operator="in"></feComposite></filter></defs></svg>

CodePudding user response:

I found a way, it works!

remove_action('wp_body_open', 'wp_global_styles_render_svg_filters');

CodePudding user response:

5.9 have added some extra global styles in <head> . You can disable them if you don't want by adding this code snippet.

add_action(wp_enqueue_scripts','remove_my_global_styles');
function remove_my_global_styles() {wp_dequeue_style('global-styles');
}
  • Related