w3tc_minify_enable

w3tc_minify_enable

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

See hook in core

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

apply_filters('w3tc_minify_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 );