w3tc_minify_html_script_minifier

w3tc_minify_html_script_minifier

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

See hook in core

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

apply_filters('w3tc_minify_html_script_minifier') is found 2 times:

  • /lib/Minify/Minify/HTML.php line 313
    		if (in_array($type, array('text/template', 'text/x-handlebars-template'))) {
    			$minifier = '';
    		}
    
    		$minifier = apply_filters('w3tc_minify_html_script_minifier', $minifier, $type, $script_tag);
    
    		if (empty($minifier)) {
    			$needsCdata = false;
    		} else {
    			// remove CDATA section markers
    			$js_old = $js;
    
  • /lib/Minify/Minify/Inline.php line 52
            if (in_array($type, array('text/template', 'text/x-handlebars-template'))) {
                $minifier = '';
            }
    
            $minifier = apply_filters('w3tc_minify_html_script_minifier', $minifier, $type, $openTag . $content . $closeTag);
    
            if (empty($minifier)) {
                $needsCdata = false;
            } else {
                // remove CDATA section markers
                $content_old = $content;