Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: nocache_headers

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1627 function wp_get_nocache_headers() {
1628      $headers = array(
1629           'Expires' => 'Wed, 11 Jan 1984 05:00:00 GMT',
1630           'Last-Modified' => gmdate( 'D, d M Y H:i:s' ) . ' GMT',
1631           'Cache-Control' => 'no-cache, must-revalidate, max-age=0',
1632           'Pragma' => 'no-cache',
1633      );
1634
1635      if ( function_exists('apply_filters') ) {
1636           $headers = apply_filters('nocache_headers', $headers);
1637      }
1638      return $headers;
1639 }
1640
1641 /**
1642  * Sets the headers to prevent caching for the different browsers.
1643  *
1644  * Different browsers support different nocache headers, so several headers must
1645  * be sent so that all of them get the point that no caching should occur.