Skip to content

Instantly share code, notes, and snippets.

@jodzeee
Created July 8, 2024 21:24
Show Gist options
  • Save jodzeee/ab06b148100727852115850c77d81815 to your computer and use it in GitHub Desktop.
Save jodzeee/ab06b148100727852115850c77d81815 to your computer and use it in GitHub Desktop.
Remove the plugin notifications from all the pages except the main WP Admin dashboard
<?php
add_action( 'current_screen', function() {
$screen = get_current_screen();
if ( $screen->id !== "dashboard" ) {
add_action( 'admin_enqueue_scripts', function() {
echo '<style>
div.wrap > .update-nag,
div.wrap > .updated,
div.wrap > .error,
div.wrap > .is-dismissible
{
display: none !important;
}
</style>';
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment