Extra speed boost
-
Great plugin. Does it what is says and can really help give that extra speed boost. It even refreshes the cache when a widget is saved.
On first installation I would recommend increasing the cache time from the default 12 minutes, using the below filter:
add_filter( ‘widget_output_cache_ttl’, ‘widget_cache_custom_ttl’, 10, 2 );
function widget_cache_custom_ttl( $ttl ) {
$ttl = 3600 * 24; // 24 hours
return $ttl;
}
- The topic ‘Extra speed boost’ is closed to new replies.