Auto purge cache
-
Hi
I added this code to my functions.php but it doesn’t work…Why? I really need to clear all cache once in an hour. How to do it properly?
function w3_flush_cache( ) { $w3_plugin_totalcache->flush_all(); } // Schedule Cron Job Event function w3tc_cache_flush() { if ( ! wp_next_scheduled( 'w3_flush_cache' ) ) { wp_schedule_event( current_time( 'timestamp' ), 'hourly', 'w3_flush_cache' ); } } add_action( 'wp', 'w3tc_cache_flush' );
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Auto purge cache’ is closed to new replies.