标题在我的代码之前的顶部有额外的HTML块

时间:2018-01-07 作者:go_cuc

我一直在试图解决wordpress中wp\\u head加载到body标记中的问题,我发现当我查看页面源代码时,在标题中的代码之前会出现一个额外的HTML块。php文件。

以下是我尝试过的:

将wp\\u debug设置为true,确保字符集为UTF-8,在开始之前删除所有文本!DOCTYPE检查是否缺少结束标记这是我的header.php 文件enter image description here

以下是输出源:You can see that my code is being rendered correctly.. but why am I getting a HTML block at the start of the document??

您可以看到我的代码被正确呈现。。但是为什么我在文档的开头得到一个HTML块呢??任何帮助都将是惊人的。非常感谢

1 个回复
最合适的回答,由SO网友:Abhik 整理而成

我真的不知道是什么原因造成的。你能尝试在header.php? 像这样的事情,看看是否出现了问题?

<!doctype html>
<html <?php language_attributes(); ?>>
<head>
    <meta charset="<?php bloginfo( \'charset\' ); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>  
而且,元标记不支持class 如第11行所示的属性。

结束