我将此添加到functions.php
文件,该文件删除所有html注释,从而消除该问题。
我在这里找到了解决方案:https://www.thewebtaylor.com/articles/wordpress-remove-html-comments
function callback($buffer) {
$buffer = preg_replace(\'/<!--(.|s)*?-->/\', \'\', $buffer);
return $buffer;
}
function buffer_start() {
ob_start("callback");
}
function buffer_end() {
ob_end_flush();
}
add_action(\'get_header\', \'buffer_start\');
add_action(\'wp_footer\', \'buffer_end\');