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.
Tell me more
×
WordPress Answers is a question and answer site for
WordPress developers and administrators. It's 100% free, no registration required.
|
|
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. |
|||
|
|
|
Easiest way to do this was to define a constant programmatically:
|
|||
|
|
|
As per this question, you can use fragment caching to exclude specific things from being cached:
|
|||
|
|