Skip to content

Instantly share code, notes, and snippets.

@JRMorris77
Created February 8, 2017 03:26
Show Gist options
  • Save JRMorris77/119459c992e4f65bec5d8c97f7d4e932 to your computer and use it in GitHub Desktop.
Save JRMorris77/119459c992e4f65bec5d8c97f7d4e932 to your computer and use it in GitHub Desktop.
<?php
add_action('admin_head', 'disable_notice');
function disable_notice() {
echo '<style>
.wp-core-ui .notice.is-dismissible {
display: none;
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment