w3tc_can_print_comment, self::is_html_xml( $buffer

w3tc_can_print_comment, self::is_html_xml( $buffer

Hook Type: filter

See hook in core

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

apply_filters('w3tc_can_print_comment, self::is_html_xml( $buffer') is found 1 times:

  • /Util_Content.php line 70
    	 * @return bool
    	 */
    	public static function can_print_comment( $buffer ) {
    		if ( function_exists( 'apply_filters' ) ) {
    			return apply_filters( 'w3tc_can_print_comment', self::is_html_xml( $buffer ) && ! defined( 'DOING_AJAX' ) );
    		}
    
    		return self::is_html_xml( $buffer ) && ! defined( 'DOING_AJAX' );
    	}
    
    	/**