How do I turn off the WP Super Cache & W3 Total Cache functionality programmatically? For instance, I neither want to make it use the cache on some requests nor cache the output of the request, do they support that using filters? I couldn’t find anything useful in their documentation.
Leave a Reply
You must be logged in to post a comment.
Easiest way to do this was to define a constant programmatically:
Both plugins you mention have settings pages that allow you to add directories or specific files to not cache.
These setting files are saved as text files in the relevant directory. You should be able to programatically ‘append’ your /mobile-theme/ directory to these settings files.
As per this question, you can use fragment caching to exclude specific things from being cached: