Hi,
I need to load dynamically a php function and I use the Fragment Caching tag. For example:
my php function that is in single.php:
<?php if(function_exists('show_w')) { show_w('word'); } ?>
but if the page is cached, the function become plain html.
So I have tryed the Fragmented Cache method described in the FAQ of W3TC and my code is now:
<!-- mfunc if(function_exists('show_w')) { show_w('word'); } --><!-- /mfunc -->
The code works, but no page is cached!!! I can't see any html on the w3tc/pgcache folder!
What can I do?