Make WordPress Core

Ticket #28569: 28569.patch

File 28569.patch, 428 bytes (added by paulschreiber, 10 years ago)
  • src/wp-includes/admin-bar.php

     
    805805function show_admin_bar( $show ) {
    806806        global $show_admin_bar;
    807807        $show_admin_bar = (bool) $show;
     808
     809        if ( $show_admin_bar === false ) {
     810                remove_action( 'wp_head', '_admin_bar_bump_cb' );
     811        }
    808812}
    809813
    810814/**