Skip to content

Instantly share code, notes, and snippets.

@jshwlkr
Created February 15, 2022 20:42
Show Gist options
  • Save jshwlkr/35ad04747a0466cea1f82cd62e3e22d8 to your computer and use it in GitHub Desktop.
Save jshwlkr/35ad04747a0466cea1f82cd62e3e22d8 to your computer and use it in GitHub Desktop.
Add additional XML namespaces to a WordPress html element
add_filter( 'language_attributes', 'prefix_xml_namespaces' );
function prefix_xml_namespaces($output) {
return $output . ' xmlns="http://www.w3.org/1999/xhtml" etc';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment