w3tc_config_item_ . $w3tc_key, $v
w3tc_config_item_ . $w3tc_key, $v
Appears in: w3-total-cache.2.10.3
Hook Type: filter
Displaying hooks found in version: w3-total-cache.2.10.3apply_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.