w3tc_minify_enable, $enable
w3tc_minify_enable, $enable
Appears in: w3-total-cache.2.10.3
Hook Type: filter
Displaying hooks found in version: w3-total-cache.2.10.3apply_filters('w3tc_minify_enable, $enable') is found 1 times:
- /Minify_Plugin.php line 197
* @throws \Exception If an error occurs during the minification process. */ public function ob_callback( $buffer ) { $enable = Util_Content::is_html( $buffer ) && $this->can_minify2( $buffer ); $enable = apply_filters( 'w3tc_minify_enable', $enable ); if ( ! $enable ) { return $buffer; } $this->minify_helpers = new _W3_MinifyHelpers( $this->_config );