Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created January 11, 2023 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/5ed088394779bbda4de29c12f619e255 to your computer and use it in GitHub Desktop.
Save plugin-republic/5ed088394779bbda4de29c12f619e255 to your computer and use it in GitHub Desktop.
/**
* Hide duplicate metadata in order screen
*/
function prefix_custom_fonts() {
echo '<style>
table.display_meta {
display: none
}
</style>';
}
add_action('admin_head', 'prefix_custom_fonts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment