matthijs166
11/25/2017 - 12:26 PM

wordpress remove admin bar

remove edit bar of wordpress admin bar

if ( is_admin_bar_showing() ) {
    add_filter( 'show_admin_bar', '__return_false' );
    ?>
    <style media="screen">
        html { margin-top: 0px !important; }
        * html body { margin-top: 0px !important; }
    </style>
    <?php
}