Add a new output handler function.
add_handler( callback $callback ) : void
$callback (callback) (Required) The name of a function or other callable object
No value is returned.
add_handler(function ($output = '') {
return preg_replace("/<meta name='theme-color' content='#ffffff'>/i", '<meta name="theme-color" content="#000.">', $output);
});