Hi
I have comet cache pro and I really need to do some tasks after the cache is cleared for a certain URL.
I can’t see any actions we can hook into from searching the code.
Is something like this possible? I can’t just use the wp save_post hook etc I need to fire a function when the cache is auto cleared by comet cache due to page age too.
add_action(‘comet_cache_cleared’, ‘my_function’);
function my_function($url)
{
//do what I need to with $url
}
I really hope someone can help.
Thanks,