无法解决此错误,因为开始标记为html

无法解决此错误,因为开始标记为html,html,wordpress,Html,Wordpress,**请帮我做这个。 我无法使用解决此错误[ 我已经尝试了很多解决方案,甚至从stackoverflow的建议,但它不适合我** 开始标记html。 从第3行第2列到第3行第34列 "↩ ↩ /*这是我的html代码*/ 看起来它正在捕获您的php标记,您需要在实际的html输出上运行验证程序(即在浏览器中查看源代码)。请告诉我我需要在这段代码中更改什么?如上所述,一行如 /*here is my html code*/ <!DOCTYPE html> <meta name="

**请帮我做这个。 我无法使用解决此错误[

我已经尝试了很多解决方案,甚至从stackoverflow的建议,但它不适合我**

开始标记html。 从第3行第2列到第3行第34列 "↩ ↩

/*这是我的html代码*/

看起来它正在捕获您的php标记,您需要在实际的html输出上运行验证程序(即在浏览器中查看源代码)。请告诉我我需要在这段代码中更改什么?如上所述,一行如

/*here is my html code*/

<!DOCTYPE html>
<meta name="description" content="This is an example of a meta description.">
<html <?php language_attributes(); ?> class="no-js">
<!--[if IE 7]><html lang="en" class="ie7"><![endif]-->
<!--[if IE 8]><html lang="en" class="ie8"><![endif]-->
<!--[if IE 9]><html lang="en" class="ie9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><html lang="en"><![endif]-->
<!--[if !IE]><html lang="en-US"><![endif]-->

<head>
    <meta name="viewport" content="width=device-width, initial-scale=1, user scalable=no">
    <meta charset="<?php bloginfo( 'charset' ); ?>">
    <link rel="profile" href="http://gmpg.org/xfn/11">
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
    <title>
        <?php wp_title(''); ?>
        <?php if(wp_title('', false)) { echo ' :'; } ?>
        <?php bloginfo('name'); ?>
    </title>
    <?php wp_head(); ?>


    <body <?php body_class(); ?>>
       ......
    </body>

</html>