WordPress, Genesis Framework and Storefront customization tutorials
Home ยป How to hide WordPress Update notification on admin panel?
How to hide WordPress Update notification on admin panel?
add_action('admin_menu','hide_wordpress_update_nag');
function hide_wordpress_update_nag() {
if (is_admin()) {
remove_action('admin_notices', 'update_nag', 3);
}
}
About Gabor Flamich
I'm a web developer and designer based in Budapest, Hungary. In recent years, I've documented hundreds of solutions I came across during development. This site is an archive for useful code snippets on WordPress, Genesis Framework and WooCommerce. If You have any questions related to WordPress development, get in touch!
Leave a Reply