头部 Wordpress 中缺少元标记

Missing meta tag in head Wordpress

提问人:in2d 提问时间:8/22/2023 最后编辑:in2d 更新时间:8/22/2023 访问量:47

问:

Lighthouse 给我错误,我缺少视口元标记和描述元标记

Does not have a <meta name="viewport"> tag with width or initial-scaleNo `<meta name="viewport">` tag found

但是我在标题 .php 文件中有两个元标记

<head>
  <meta name="description" content="Description">
  <meta charset="utf-8">
  <title>My site</title>
  <?php wp_head(); ?>
  <meta name="viewport" content="width=device-width, initial-scale=1">
</head>

编辑:当我在浏览器中检查网站时,我可以看到元标记已自动从标签移动到正文标签。不知道为什么

有人遇到过这个问题吗?我尝试添加元标记 trought 函数 .php,但也没有运气。干杯!

php html wordpress 谷歌浏览器 灯塔

评论


答:

0赞 in2d 8/22/2023 #1

所以基本上我犯了一个非常愚蠢的错误。在我的页面中.php我把 get_header() 函数放在错误的位置

以前

<div class="w-large">
 <?php get_header(); ?>
    <?php
    while (have_posts()) : the_post();
        the_content();
    endwhile;
    ?>

</div>

<?php get_footer(); ?>

<div class="w-large">

    <?php
    while (have_posts()) : the_post();
        the_content();
    endwhile;
    ?>

</div>

<?php get_footer(); ?>