lorenz-w
2/15/2018 - 8:41 PM

Remove the 28px Push Down from the Admin Bar

<?
//Remove the 28px Push Down from the Admin Bar

add_action('get_header', 'my_filter_head');

function my_filter_head() {
remove_action('wp_head', '_admin_bar_bump_cb');
}
?>