w3tc_config_default_values, array(

w3tc_config_default_values, array(

Hook Type: filter

See hook in core

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

apply_filters('w3tc_config_default_values, array(') is found 2 times:

  • /Config.php line 212
     
    		// try cached default values.
    		static $default_values = null;
    		if ( is_null( $default_values ) ) {
    			$default_values = apply_filters( 'w3tc_config_default_values', array() );
    		}
    
    		$v = $this->_get( $default_values, $w3tc_key );
    		if ( ! is_null( $v ) ) {
    			return $v;
    		}
    
  • /Config.php line 221
    			return $v;
    		}
    
    		// update default values.
    		$default_values = apply_filters( 'w3tc_config_default_values', array() );
    
    		$v = $this->_get( $default_values, $w3tc_key );
    		if ( ! is_null( $v ) ) {
    			return $v;
    		}