Skip to content

Instantly share code, notes, and snippets.

@rali14
Created March 18, 2020 17:12
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 rali14/4aa8bcc569126cf1509d5d5fce5edaf5 to your computer and use it in GitHub Desktop.
Save rali14/4aa8bcc569126cf1509d5d5fce5edaf5 to your computer and use it in GitHub Desktop.
Hide notices from WP-Admin
add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
echo '<style>
.notice-error {
display: none;
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment