w3tc_config_item_

w3tc_config_item_

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

See hook in core

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

apply_filters('w3tc_config_item_') is found 1 times:

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