head: reorder description metadata attributes
authorMischa POSLAWSKY <perl@shiar.org>
Thu, 19 Aug 2021 15:14:45 +0000 (17:14 +0200)
committerMischa POSLAWSKY <perl@shiar.org>
Wed, 22 Sep 2021 14:50:44 +0000 (16:50 +0200)
At least Twitter <https://cards-dev.twitter.com/validator> requires og property to be first.

head.inc.php

index 9ff649579398ad3dcaee9d350a11e839677a0c1b..5aec7168bbfa2c3a195a2c9960b4d7c84ca0577c 100644 (file)
@@ -6,7 +6,7 @@
        <title property="og:name"><?= htmlspecialchars($Page->safetitle) ?></title>
 <?php } ?>
 <?php if ($Page->teaser) { ?>
-       <meta name="description" property="og:description" content="<?= preg_replace('/\s+/', ' ', strip_tags($Page->teaser)) ?>" />
+       <meta property="og:description" name="description" content="<?= preg_replace('/\s+/', ' ', strip_tags($Page->teaser)) ?>" />
 <?php } ?>
        <meta name="viewport" content="width=device-width" />
        <!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script><![endif]-->