Since wordpress 3.1, it appears we have a “admin bar”. This is a great new feature and we should be thankful. However, if you don’t like the admin bar and you want it removed everywhere at all times, just add this filter to your blog. For instance… in your functions.php.
<?php
/**
* RemoveAdminBar()
* Removes the default admin bar on top
* @return bool false
*/
function RemoveAdminBar()
{
return false;
}
add_filter('show_admin_bar', 'RemoveAdminBar');
?>
Mail this!
- Comments (0)
- PingBacks (0)
- TrackBacks (0)

» Latest comments