w3tc_dbcache_cache_set

w3tc_dbcache_cache_set

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: w3-total-cache.2.7.0

apply_filters('w3tc_dbcache_cache_set') is found 1 times:

  • /DbCache_WpdbInjection_QueryCaching.php line 234
    					'expiration' => $this->_lifetime,
    				);
    
    				if ( $this->use_filters && function_exists( 'apply_filters' ) ) {
    					$filter_data = apply_filters( 'w3tc_dbcache_cache_set', $filter_data );
    				}
    
    				$cache->set(
    					md5( $filter_data['query'] ),
    					$filter_data['content'],
    					$filter_data['expiration'],