wp-includes/theme.php:1626Unregisters default headers.
$headerstring|arraybool|nullfunction unregister_default_headers( $header ) { global $_wp_default_headers; if ( is_array( $header ) ) { array_map( 'unregister_default_headers', $header ); return null; } elseif ( isset( $_wp_default_headers[ $header ] ) ) { unset( $_wp_default_headers[ $header ] ); return true; } else { return false; }}Introduced in 3.0.0. One change between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
bool|void to bool|null.verified against sourcesrc/wp-includes/theme.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.