10 Useful Wordpress User Interface / Dashboard Hacks!: "Remember whatever code is shown below, you must add it to the functions.php which is present in your theme.
1. Removing WordPress update notifications
It is very unprofessional to show your users, “New wordpress versions are available. Please update it”. As a site owner, you may want to hide this notice to users.
?
CODE
1
2
3
4
5
//disable wordpress version update
function hide_update_notice() {
remove_action( 'admin_notices', 'update_nag', 3 );
}
add_action( 'admin_notices', 'hide_update_notice', 1 );"
'via Blog this'
No comments:
Post a Comment