w3tc_minify_file_handler_minify_options

w3tc_minify_file_handler_minify_options

Hook Type: filter

See hook in core

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

apply_filters('w3tc_minify_file_handler_minify_options') is found 1 times:

  • /Minify_MinifiedFileRequestHandler.php line 250
    			return $this->finish_with_error( 'Nothing to minify', $quiet, false );
    		}
    
    		// Minify.
    		$serve_options = apply_filters( 'w3tc_minify_file_handler_minify_options', $serve_options );
    
    		$return = array();
    		try {
    			$return = \W3TCL\Minify\Minify::serve( 'MinApp', $serve_options );
    		} catch ( \Exception $exception ) {
    			return $this->finish_with_error( $exception->getMessage(), $quiet );