nocache_headers()
Set the headers to prevent caching for the different browsers.
Contents
Description Description
Different browsers support different nocache headers, so several headers must be sent so that all of them get the point that no caching should occur.
See also See also
More Information More Information
Usage:
nocache_headers();
Source Source
File: wp-includes/functions.php
function nocache_headers() { if ( headers_sent() ) { return; } $headers = wp_get_nocache_headers(); unset( $headers['Last-Modified'] ); header_remove( 'Last-Modified' ); foreach ( $headers as $name => $field_value ) { header( "{$name}: {$field_value}" ); } }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Use nocache_headers to add custom headers to
wp-admin
pages. Example code: