Wednesday, August 10, 2011

How to remove wordpress update message in Admin dashboard ?

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 );

}

No comments:

Post a Comment