And today I installed another important wordpress update. This update brought a stupid admin bar with it.
For some styles and users this can be really helpful, but not for me and my style.
Some developers started to create ugly plugins ti disable the admin bar. But there is no need for a plugin, you can turn it off in your profile:
Another way is to add a filter:
1 | add_filter( 'show_admin_bar', '__return_false' ); |
… just pasting this short code into your functions.php
Not everyone is comfortable editing files so it’s nice to let people know about a very useful plugin ;)
Leave a Reply