Introduction
To offer more flexibility in the way you handle cache exclusions, you can also add a custom PHP header inside of WordPress to exclude pages as you see fit.
TABLE OF CONTENTS
Nginx Caching Configurations
This will work for both FastCGI and Redis Page caching on vCanopy servers.
Out of the box, both of our caching Nginx configurations contain the following:
FASTCGI
fastcgi_cache_bypass $skip_cache$upstream_http_do_not_cache; fastcgi_no_cache $skip_cache$upstream_http_do_not_cache;
REDIS
srcache_fetch_skip $skip_cache$upstream_http_do_not_cache; srcache_store_skip $skip_cache$upstream_http_do_not_cache;
WHAT THESE DO
The above will ensure that if a page has the following HTTP response header, it will result in a cache MISS:
do-not-cache: true
Add a HTTP Response Header via PHP in WordPress
Setting the header via PHP looks as follows:
<?php header("do-not-cache: true"); ?>
USING THE SEND_HEADERS HOOK
In WordPress, you can use the send_headers hook to add your headers.
For example, adding this to your themes functions.php would create an exclusion across your entire site:
function my_headers() { header( 'do-not-cache: true' ); } add_action( 'send_headers', 'my_headers' );
You can use the above to create add the do-not-cache
header across your site as you see fit, such as adding this to custom page templates and so forth.
EXCLUDING SPECIFIC PAGES OR CATEGORIES FROM FUNCTIONS.PHP
If you’d like to target specific pages, thesend_headers
hook detailed above will not work for this use case.
This is because that hook is fired before the main query is initiated correctly. The main query needs to be properly initiated before we can make use of such functions as is_single(<>)
to target a specific page or is_category("x")
to target a specific category.
The template_redirect
is more suitable for this. Your code could look like this:
function my_headers() { if( is_single(your-page-ID-here) ) { header( 'do-not-cache: true' ); } } add_action( 'template_redirect', 'my_headers' );Reference: https://wordpress.stackexchange.com/questions/258896/how-can-i-change-http-headers-only-to-posts-of-a-specific-category-from-a-plugin