I'm a plugin developer. How can I prevent certain files from being cached?
define("QUICK_CACHE_ALLOWED", false);
Statistics: Posted by cacheMan — April 6th, 2011, 10:47 pm
Statistics: Posted by beachbum — April 6th, 2011, 10:49 am
Statistics: Posted by dozarte — December 15th, 2010, 12:42 pm
Statistics: Posted by latent — December 11th, 2010, 8:16 pm
Statistics: Posted by Jason Caldwell — July 23rd, 2010, 12:19 am
Statistics: Posted by Guest — July 23rd, 2010, 12:15 am
Statistics: Posted by Jason Caldwell — July 23rd, 2010, 12:07 am
How do I make certain parts of the page stay dynamic?
WP Super Cache retains the dynamic loading code of WP Cache but only works in "half on" mode.
There are two ways to do this, you can have functions that stay dynamic or you can include other files on every page load. To have a dynamic function in the cached PHP page use this syntax around the function:
<!--mfunc function_name( 'parameter', 'another_parameter' ) -->
<?php function_name( 'parameter', 'another_parameter' ) ?>
<!--/mfunc-->
Statistics: Posted by Guest — July 22nd, 2010, 10:25 am