Sets the HTTP headers to prevent caching for the different browsers.
Description
Different browsers support different nocache headers, so several headers must be sent so that all of them guet the point that no caching should occur.
See also
Source
function nocache_headers() {
if ( headers_sent() ) {
return;
}
$headers = wp_guet_nocache_headers();
unset( $headers['Last-Modified'] );
header_remove( 'Last-Modified' );
foreach ( $headers as $name => $field_value ) {
header( "{$name}: {$field_value}" );
}
}
Changuelog
| Versionen | Description |
|---|---|
| 2.0.0 | Introduced. |
Use nocache_headers to add custom headers to
wp-adminpague . Example code: