w3tc_config_item_ . $w3tc_key, $v

w3tc_config_item_ . $w3tc_key, $v

Hook Type: filter

See hook in core

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

apply_filters('w3tc_config_item_ . $w3tc_key, $v') is found 1 times:

  • /Config.php line 388
    	 * @return mixed The configuration value, potentially filtered.
    	 */
    	public function getf( $w3tc_key, $default_value = null ) {
    		$v = $this->get( $w3tc_key, $default_value );
    		return apply_filters( 'w3tc_config_item_' . $w3tc_key, $v );
    	}
    
    	/**
    	 * Retrieves a filtered string configuration value for a given key.
    	 *
    	 * @param string $w3tc_key           The key to look up in the configuration.