MakeUseOf Answers

Kenny Goodmans Blog

What going on around the world?

Israeli stocks on Wall St

Thursday, November 8, 2012

10 Useful Wordpress User Interface / Dashboard Hacks!

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

Creative Licence