Skip to content

Instantly share code, notes, and snippets.

@barrd
Created February 18, 2021 07:31
Show Gist options
  • Save barrd/b0529e8a8ba9380dc2eceac050a17e1b to your computer and use it in GitHub Desktop.
Save barrd/b0529e8a8ba9380dc2eceac050a17e1b to your computer and use it in GitHub Desktop.
WordPress hide jQuery migration notice and disable admin email
<?php
/**
 * Hide jQuery Migration notice
 *
 * Temp fix until plugin can be removed
 *
 * @return void
 */
function removes_migrate_warning() {
?>
<style type="text/css">
.jquery-migrate-dashboard-notice {
display: none !important;
}
</style>
<?php
}
add_filter(
'admin_footer',
'removes_migrate_warning',
99
);
// Stop admin email being sent.
add_filter(
'jqmh_email_message',
'_return_null'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment