Programming,Web, Technology,Mobiles,Tablets,Reviews
SOL:
Add the follwoing code in your Theme 'functions.php' page to remove the wordpress update message in Admin dashboard
add_action('admin_menu','hideupdatenotice');function hideupdatenotice(){remove_action( 'admin_notices', 'update_nag', 3 );}
add_action('admin_menu','hideupdatenotice');
function hideupdatenotice()
{
remove_action( 'admin_notices', 'update_nag', 3 );
}
No comments:
Post a Comment