w3tc_can_print_comment

w3tc_can_print_comment

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

See hook in core

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

apply_filters('w3tc_can_print_comment') is found 1 times:

  • /Util_Content.php line 70
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    * @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' );
    }
     
    /**