FacetWP Cache Lifetime
<?php /** * FacetWP Cache Lifetime */ function yanco_facetwp_cache_lifetime( $seconds ) { return 60*60; // one hour } add_filter( 'facetwp_cache_lifetime', 'yanco_facetwp_cache_lifetime' );