w3tc_minify_enable

w3tc_minify_enable

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

See hook in core

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

apply_filters('w3tc_minify_enable') is found 1 times:

  • /Minify_Plugin.php line 144
    	 */
    	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 );