Remove the admin bar in wordpress

Views: 31 Last modified: August 02nd, 2011 Comments: 0

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');
?>
VN:F [1.9.13_1145]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.13_1145]
Rating: 0 (from 0 votes)

    Mail this!

    To: From:Sum {4+6} =  
    Anything to add ?

        You must be logged in to post a comment.