杂散结束标记头

时间:2013-10-12 15:58:55

标签: wordpress validation head

我不知道为什么在验证我的网站时出现此错误,但显然我做错了,因为我也收到了以下错误: "看到了一个body元素开始标记,但是同一类型的元素已经打开"

<!DOCTYPE html>
<html lang="en-uk">
<head>
<title> Erasmus+</title>
<meta name="author" content="" />
<meta name="dcterms.rights" content="" />
<meta name="" />
<meta name="keywords" content="" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />

<link href="" type="text/css" />
<link href="" type="text/css" />
<link rel="stylesheet" type="text/css" href="" />
<link rel="shortcut icon" type="image/x-icon" href="" />
<?php wp_head();?>     
<!--[if !IE]><!-->
<style>

</style>
<!--<![endif]-->

<script>
</script>
</head>

<body class="home blog">

这是一个wordpress网站:www.erasmus-plus.ro 我无法找到我做错的事。 谢谢! 编辑:如果我删除

,我会看到
<?php wp_head();?> 

错误消失了,但是wordpress文件不需要吗?

1 个答案:

答案 0 :(得分:2)

这不是完整的HTML代码。看看来源,显然你有:

<input type='hidden' value='http://erasmus-plus.ro/wp-content/plugins/form-maker' id='form_plugins_url' />

第41行。那是“可显示的”代码,所以我认为这使得头部关闭并打开&lt; body&gt;隐含地,因此当它到达你的显式标签时就会抱怨。

我猜一些流浪插件使用wp_head将其插入你的行为是行为不端。尝试逐个禁用你的插件,你可能会找到罪魁祸首。可能与表格有关的东西?