How to remove SVG Files inline code of WordPress Footer?

After the latest update of WordPress version 5.9, I saw that there was a svg files added at the bottom of the page.

Can you please tell me, how to remove this?

What’s the use of it?

enter image description here

1 Answer
1

I’ve got the answer.
Create a new file in the root of your theme with the name theme.json

Add and save the following code into it:

{
    "version": 1,
    "settings": {
        "color": {
            "duotone": null
                }
        }
}

Leave a Comment